Skip to main content
GET
/
api
/
v2
/
usage
/
mau
/
sdks
Get MAU SDKs by type
curl --request GET \
  --url https://app.launchdarkly.com/api/v2/usage/mau/sdks \
  --header 'Authorization: <api-key>'
{
  "_links": {},
  "sdks": [
    "Android",
    "Java",
    "Node.js"
  ]
}

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.

Authorizations

Authorization
string
header
required

Query Parameters

from
string<string>

The data returned starts from this timestamp. Defaults to seven days ago. The timestamp is in Unix milliseconds, for example, 1656694800000.

to
string<string>

The data returned ends at this timestamp. Defaults to the current time. The timestamp is in Unix milliseconds, for example, 1657904400000.

sdktype
string<string>

The type of SDK with monthly active users (MAU) to list. Must be either client or server.

Response

MAU SDKs response

The location and content type of related resources

sdks
string[]
required

The list of SDK names

Example:
["Android", "Java", "Node.js"]