Skip to main content

๐Ÿ“ˆ Introducing Market Data on ChainGate API

ยท One min read

Weโ€™ve just added a new endpoint to the ChainGate API: /global/markets!

You can now retrieve real-time exchange rates for both cryptocurrencies and fiat currencies, all expressed in USD.
Whether you're tracking Bitcoin, Ethereum, EUR, or JPY, this new endpoint gives you reliable pricing and 24h volume data to power your apps, dashboards, or trading logic.

Example Response:โ€‹

GET /global/markets
{
"currencies": [
{ "id": "bitcoin", "rateUsd": "94618.84", "vol24h": "19054774095" },
{ "id": "ethereum", "rateUsd": "1818.54", "vol24h": "8508482393" }
],
"fiat": [
{ "symbol": "eur", "rateUsd": "1.1326" },
{ "symbol": "jpy", "rateUsd": "0.00693" }
]
}