Get stats of all indexes

GET /stats

Get stats of all indexes.

Responses

GET /stats
curl \
 -X GET https://example.meilisearch.com:7700/stats \
 -H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "databaseSize": 567,
  "lastUpdate": "2019-11-20T09:40:33.711324Z",
  "indexes": {
    "movies": {
      "numberOfDocuments": 10,
      "isIndexing": true,
      "fieldDistribution": {
        "genre": 10,
        "author": 9
      }
    }
  }
}
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"
}