Skip to main content
GET
http://localhost:5001
/
search
/
reindex
curl -X GET "http://YOUR_BLNK_INSTANCE_URL/search/reindex" \
  -H "X-Blnk-Key: YOUR_API_KEY"
{
  "status": "in_progress",
  "phase": "indexing_transactions",
  "total_records": 2145709,
  "processed_records": 2145709,
  "started_at": "2026-02-12T12:13:10.448612096Z"
}
Poll this endpoint to monitor reindex progress. Reindexing can take several minutes or longer depending on data volume.

Authorization

If set, the API uses an API key for authentication. Include the following header in your requests: X-blnk-key: <api-key>. Replace <api-key> with your secret API key. Ensure the key is kept secure and not exposed in public repositories or client-side code. See also: Secure your Blnk server

Response

status
string
Current state: in_progress or completed.
phase
string
Current phase (e.g. indexing_transactions) or done when complete.
total_records
integer
Total number of records to index.
processed_records
integer
Number of records processed so far.
started_at
string
ISO 8601 timestamp when reindex began.
completed_at
string
ISO 8601 timestamp when reindex finished. Only present when status is completed.
errors
array
Array of error messages. Only present when an error occurs during reindex.
{
  "status": "in_progress",
  "phase": "indexing_transactions",
  "total_records": 2145709,
  "processed_records": 2145709,
  "started_at": "2026-02-12T12:13:10.448612096Z"
}
curl -X GET "http://YOUR_BLNK_INSTANCE_URL/search/reindex" \
  -H "X-Blnk-Key: YOUR_API_KEY"

Need help?

We are very happy to help you make the most of Blnk, regardless of whether it is your first time or you are switching from another tool. To ask questions or discuss issues, please contact us or join our Discord community.
Tip: Connect to Blnk Cloud to see your Core data.You can view your transactions, manage identities, create custom reports, invite other team members to collaborate, and perform operations on your Core — all in one dashboard.Check out Blnk Cloud →