For the complete documentation index, see llms.txt. For the full documentation snapshot, see llms-full.txt.
Get the status for a particular feature flag across environments.
curl --request GET \
--url https://app.launchdarkly.com/api/v2/flag-status/{projectKey}/{featureFlagKey} \
--header 'Authorization: <api-key>'{
"environments": {
"production": {
"lastRequested": "2020-02-05T18:17:01.514Z",
"name": "inactive"
}
},
"key": "flag-key-123abc",
"_links": {
"parent": {
"href": "/api/v2/flag-status",
"type": "application/json"
},
"self": {
"href": "/api/v2/flag-status/my-project/my-flag",
"type": "application/json"
}
}
}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 project key
The feature flag key
Optional environment filter
Flag status across environments response
Flag status for environment.
Show child attributes
{
"production": {
"lastRequested": "2020-02-05T18:17:01.514Z",
"name": "inactive"
}
}feature flag key
"flag-key-123abc"
Show child attributes
{
"parent": {
"href": "/api/v2/flag-status",
"type": "application/json"
},
"self": {
"href": "/api/v2/flag-status/my-project/my-flag",
"type": "application/json"
}
}curl --request GET \
--url https://app.launchdarkly.com/api/v2/flag-status/{projectKey}/{featureFlagKey} \
--header 'Authorization: <api-key>'{
"environments": {
"production": {
"lastRequested": "2020-02-05T18:17:01.514Z",
"name": "inactive"
}
},
"key": "flag-key-123abc",
"_links": {
"parent": {
"href": "/api/v2/flag-status",
"type": "application/json"
},
"self": {
"href": "/api/v2/flag-status/my-project/my-flag",
"type": "application/json"
}
}
}