GET
/
tickers
/
markets
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
      }
    ]
  }
]
3 credits per request
Returns a list of tickers for a specific cryptocurrency across multiple exchanges.

Authorizations

X-API-KEY
string
header
required

API key needed to access the endpoints. Example: 'demo-api-key'

Query Parameters

page
number
Example:

1

limit
number
Example:

20

exchange
string
Example:

"Binance"

fromCoin
string
Example:

"BTC"

toCoin
string
Example:

"USDT"

coinId
string
Example:

"bitcoin"

onlyVerified
boolean
Example:

false

Response

200
application/json

Get ticker market list

The response is of type object[].