Core
API v1.x
1

You are currently looking at the documentation of a previous version of Kuzzle. We strongly recommend that you use the latest version. You can also use the version selector in the top menu.

list #

Returns the complete list of indexes.


Query Syntax #

HTTP #

Copied to clipboard!
URL: http://kuzzle:7512/_list
Method: GET

Other protocols #

Copied to clipboard!
{
  "controller": "index",
  "action": "list"
}

Response #

Returns a indexes array listing all existing index names.

Copied to clipboard!
{
  "status": 200,
  "error": null,
  "controller": "index",
  "action": "list",
  "requestId": "<unique request identifier>",
  "result": {
    "indexes": [
      "index_1",
      "index_2",
      "index_...",
      "index_n"
    ]
  }
}

Possible errors #