(EXPERIMENTAL) Get the status of runtime experimental features

GET /experimental-features

Get the status of all experimental features that can be toggled at runtime

Responses

GET /experimental-features
curl \
 -X GET https://example.meilisearch.com:7700/experimental-features \
 -H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "vectorStore": false,
  "metrics": true,
  "exportPuffinReports": false
}
Response examples (401)
{
  "message": "The Authorization header is missing. It must use the bearer authorization method.",
  "code": "missing_authorization_header",
  "type": "auth",
  "link": "https://docs.meilisearch.com/errors#missing_authorization_header"
}