# HyperTracker State Check

The HyperTracker State endpoint lets you check whether our latest aggregated data is ready.

HyperTracker refreshes after each Hyperliquid state update. In practice, this usually lands every 15–20 minutes.

Use this endpoint when you want a direct freshness check before pulling downstream datasets.

***

### Get HyperTracker state status

`/api/external/hypertracker/state/status`

{% hint style="success" %}
**Unique to HyperTracker Users**

This endpoint gives you a direct status check for HyperTracker’s latest processed state, so you can confirm data freshness before querying other endpoints.
{% endhint %}

Returns the current processing status of HyperTracker’s latest aggregated state.

Use it to:

* confirm whether fresh data is available
* coordinate polling logic
* validate update timing between webhook pings

This endpoint is especially useful alongside [Webhooks](/webhooks.md), which notify your system when a new state is ready.

Request Examples

{% tabs %}
{% tab title="Curl" %}

```bash
curl --request GET \
  --url 'https://ht-api.coinmarketman.com/api/external/hypertracker/state/status' \
  --header 'accept: application/json' \
  --header 'Authorization: Bearer YOUR_API_TOKEN'
```

{% endtab %}

{% tab title="Python" %}

```python
import requests

response = requests.get(
    'https://ht-api.coinmarketman.com/api/external/hypertracker/state/status',
    headers={
        'accept': 'application/json',
        'Authorization': 'Bearer YOUR_API_TOKEN',
    },
)

result = response.json()
```

{% endtab %}
{% endtabs %}

Response

> **200 Success:** Returns the current HyperTracker state status for the latest processed update.

Use the response to determine whether the most recent Hyperliquid state update has already been processed and exposed through the API.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.coinmarketman.com/endpoints/hypertracker-state-check.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
