list-indexes
Retrieve a paginated list of all indexes in a Meilisearch instance, enabling efficient management and oversight of search data structures.
Instructions
List all indexes in the Meilisearch instance
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Maximum number of indexes to return | |
offset | No | Number of indexes to skip |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"limit": {
"description": "Maximum number of indexes to return",
"maximum": 100,
"minimum": 1,
"type": "number"
},
"offset": {
"description": "Number of indexes to skip",
"minimum": 0,
"type": "number"
}
},
"type": "object"
}