For the complete documentation index, see llms.txt. For the full documentation snapshot, see llms-full.txt.
Get time-series arrays of the number of monthly active users (MAU) seen by LaunchDarkly from your account, broken down by the category of users. The category is either browser, mobile, or backend.
Endpoints for retrieving monthly active users (MAU) do not return information about active context instances. After you have upgraded your LaunchDarkly SDK to use contexts instead of users, you should not rely on this endpoint. To learn more, read Account usage metrics.
curl --request GET \
--url https://app.launchdarkly.com/api/v2/usage/mau/bycategory \
--header 'Authorization: <api-key>'{
"_links": {},
"metadata": [
{}
],
"series": [
{
"0": 11,
"1": 15,
"time": 1677888000000
}
]
}Documentation Index
Fetch the complete documentation index at: https://launchdarkly-preview.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
The series of data returned starts from this timestamp. Defaults to 30 days ago.
The series of data returned ends at this timestamp. Defaults to the current time.
Usage response
The location and content type of related resources
Show child attributes
Metadata about each series
Show child attributes
An array of data points with timestamps. Each element of the array is an object with a 'time' field, whose value is the timestamp, and one or more key fields. If there are multiple key fields, they are labeled '0', '1', and so on, and are explained in the metadata.
Show child attributes
[{ "0": 11, "1": 15, "time": 1677888000000 }]curl --request GET \
--url https://app.launchdarkly.com/api/v2/usage/mau/bycategory \
--header 'Authorization: <api-key>'{
"_links": {},
"metadata": [
{}
],
"series": [
{
"0": 11,
"1": 15,
"time": 1677888000000
}
]
}