For the complete documentation index, see llms.txt. For the full documentation snapshot, see llms-full.txt.
Get a list of tags.
curl --request GET \
--url https://app.launchdarkly.com/api/v2/tags \
--header 'Authorization: <api-key>'{
"_links": {
"key": {
"href": "href",
"type": "type"
}
},
"totalCount": 103,
"items": [
"ops",
"pro"
]
}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.
Fetch tags associated with the specified resource type. Options are flag, project, environment, segment, metric, metric-data-source, aiconfig, and view. Returns all types by default.
Return tags with the specified prefix
Whether or not to return archived flags
The number of tags to return. Maximum is 1000.
The index of the first tag to return. Default is 0.
The time to retrieve tags as of. Default is the current time.
curl --request GET \
--url https://app.launchdarkly.com/api/v2/tags \
--header 'Authorization: <api-key>'{
"_links": {
"key": {
"href": "href",
"type": "type"
}
},
"totalCount": 103,
"items": [
"ops",
"pro"
]
}