Search
Get reindex status
Poll the progress of a Typesense reindex with the TypeScript SDK.
GET
Get reindex status
Use
This method takes no arguments.
blnk.Search.getReindexStatus to check search reindex progress.
blnk.Search.getReindexStatus
Response shape
200 OK
| Field | Description |
|---|---|
status | Current state, in_progress or completed. |
phase | Current phase, for example indexing_transactions, or done when complete. |
total_records | Total number of records to index. |
processed_records | Number of records processed so far. |
started_at | Timestamp when the reindex began. |
completed_at | Timestamp when the reindex finished. Only present once status is completed. |
errors | Array of error messages. Only present when an error occurs. |
Related docs
How reindexing works
When and why to rebuild the index.
Check reindex progress
HTTP request and response schema.