cURL
curl --request GET \ --url https://openapiv1.coinstats.app/tickers/markets \ --header 'X-API-KEY: <api-key>'
[ { "meta": { "page": 1, "limit": 40, "itemCount": 100, "pageCount": 3, "hasPreviousPage": false, "hasNextPage": true }, "result": [ { "price": 123, "_created_at": "2023-11-07T05:31:56Z", "_updated_at": "2023-11-07T05:31:56Z", "exchange": "<string>", "pair": "<string>", "from": "<string>", "to": "<string>", "pairPrice": 123, "pairVolume": 123, "volume": 123 } ] } ]
API key needed to access the endpoints. Example: 'demo-api-key'
1
20
"Binance"
"BTC"
"USDT"
"bitcoin"
false
Get ticker market list
The response is of type object[].
object[]
Was this page helpful?