Indexes
GET /indexesReturns all configured index handles and their engine types. Use the handle value in other API paths (e.g. /:handle/search).
Response
Section titled “Response”{ "indexes": [ { "handle": "collections", "engine": "elasticsearch" }, { "handle": "catalogue", "engine": "opensearch" }, { "handle": "products", "engine": "meilisearch" } ]}| Field | Type | Description |
|---|---|---|
indexes | array | Array of configured indexes. |
indexes[].handle | string | URL-safe handle used in API paths. |
indexes[].engine | string | Search engine type (elasticsearch, opensearch, or meilisearch). |
Example
Section titled “Example”curl http://localhost:3000/indexes