Skip to main content

Indexer Status

This endpoint provides information about the current status of the Crystara indexer.

Get Indexer Status

Returns the status of the indexer.

GET /api/indexer/status

Parameters

None

Example Request

fetch('https://api.crystara.trade/mainnet/api/indexer/status', {
headers: {
'x-api-key': 'your-api-key-here'
}
})
.then(response => response.json())
.then(data => console.log(data));

Response

Coming Soon

Understanding Indexer Status

The indexer status provides information about:

  • Current Block Height: The latest block that has been indexed
  • Chain Height: The current height of the blockchain
  • Sync Status: Whether the indexer is fully synced, syncing, or has encountered issues
  • Last Updated: When the indexer last processed new blocks
  • Performance Metrics: Information about indexing speed and efficiency

This information is useful for understanding the freshness of the data available through the API and for diagnosing any potential issues with data availability.

Why Indexer Status Matters

The Crystara API relies on indexed data from the Supra blockchain. If the indexer falls behind or encounters issues, this can affect the completeness and timeliness of the data available through the API.

By checking the indexer status, you can:

  1. Verify that the data you're receiving is up-to-date
  2. Understand if there might be delays in data availability
  3. Make informed decisions about how to handle potentially stale data

For more information about the indexing process, see the Start Indexing NFT Data documentation.

Note: These routes were last updated April 2, 2025.