For the complete documentation index, see llms.txt. For the full documentation snapshot, see llms-full.txt.
Get the latest API version, the list of valid API versions in ascending order, and the version being used for this request. These are all in the external, date-based format.
curl --request GET \
--url https://app.launchdarkly.com/api/v2/versions \
--header 'Authorization: <api-key>'{
"validVersions": [
123
],
"latestVersion": "20220603",
"currentVersion": "20220603",
"beta": false
}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.
Versions information response
A list of all valid API versions. To learn more about our versioning, read Versioning.
The most recently released version of the API
"20220603"
The version of the API currently in use. Typically this is the API version specified for your access token. If you add the LD-API-Version: beta header to your request, this will be equal to the latestVersion.
"20220603"
Whether the version of the API currently is use is a beta version. This is always true if you add the LD-API-Version: beta header to your request.
false
curl --request GET \
--url https://app.launchdarkly.com/api/v2/versions \
--header 'Authorization: <api-key>'{
"validVersions": [
123
],
"latestVersion": "20220603",
"currentVersion": "20220603",
"beta": false
}