> For the complete documentation index, see [llms.txt](https://docs.kaiko.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.kaiko.com/getting-started/kaiko-examples/track-asset-volume-on-exchanges.md).

# Track asset volume on exchanges

Track the volume of any asset trading on a centralized or decentralized exchange. Quickly identify the top trending tokens and spot instances where volumes differ from market expectations.

<figure><img src="https://lh7-eu.googleusercontent.com/docsz/AD_4nXeTQxA6bWEaRwMQ0FQvH9LWiG8C7okZ_doNqu1auGg4UnfxrJ7QhtOcO1PaZ67O07IjHRFvw9FWibHCi9xJuuGI62TlXgO-vkg-02uX0cpa8s55mWgmXZ58UWi_RxMuMwsV3H1mqbmQEo0wtcqKOi6keN88?key=yKeDMZ63ctoLut6nyqnEtA" alt=""><figcaption><p>In the example above, we can see that smaller tokens like SLERF, ENA, and BONE have recorded very large volumes, on some days, significantly higher than that of eth.<br><br></p></figcaption></figure>

### <mark style="color:blue;">How to build the request</mark>

With the Market Metrics [**Exchange** **endpoint**](/rest-api/monitoring-solutions/kaiko-market-explorer/exchanges.md#what-is-this-endpoint-for), you can use the following parameters to source the specific information you're looking for:&#x20;

| Paramater   | Value                    |
| ----------- | ------------------------ |
| exchange    | huob                     |
| start\_time | 2024-04-01T00:00:00.000Z |
| end\_time   | 2024-04-11T00:00:00.000Z |
| interval    | 1d                       |
| page\_size  | 100                      |
| sort        | asc                      |

Here's an example of an HTTP string request using the values above:

<https://us.market-api.kaiko.io/v2/data/analytics.v2/exchange_metrics?exchange=huob&start_time=2024-04-01T00:00:00.000Z&end_time=2024-04-11T00:00:00.000Z&interval=1d&page_size=100&sort=asc>

When you receive your response, search for the following fields to find the data you need:

* timestamp&#x20;
* asset\_code
* total\_volume\_usd

####


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://docs.kaiko.com/getting-started/kaiko-examples/track-asset-volume-on-exchanges.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
