Skip to main content
GET
/
v1
/
tickers
/
markets
Returns a list of tickers for a specific cryptocurrency across multiple exchanges.
curl --request GET \
  --url https://api.coinstats.app/v1/tickers/markets \
  --header 'X-API-KEY: <api-key>'
import requests

url = "https://api.coinstats.app/v1/tickers/markets"

headers = {"X-API-KEY": "<api-key>"}

response = requests.get(url, headers=headers)

print(response.text)
const options = {method: 'GET', headers: {'X-API-KEY': '<api-key>'}};

fetch('https://api.coinstats.app/v1/tickers/markets', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://api.coinstats.app/v1/tickers/markets",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-KEY: <api-key>"
],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main

import (
"fmt"
"net/http"
"io"
)

func main() {

url := "https://api.coinstats.app/v1/tickers/markets"

req, _ := http.NewRequest("GET", url, nil)

req.Header.Add("X-API-KEY", "<api-key>")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.get("https://api.coinstats.app/v1/tickers/markets")
.header("X-API-KEY", "<api-key>")
.asString();
require 'uri'
require 'net/http'

url = URI("https://api.coinstats.app/v1/tickers/markets")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["X-API-KEY"] = '<api-key>'

response = http.request(request)
puts response.read_body
[
  {
    "meta": {
      "page": 1,
      "limit": 20,
      "itemCount": 57072,
      "pageCount": 2854,
      "hasPreviousPage": false,
      "hasNextPage": true
    },
    "result": {
      "_created_at": "2023-04-13T07:34:24.442Z",
      "_updated_at": "2025-08-27T10:56:44.779Z",
      "exchange": "BinanceFutures",
      "from": "BTC",
      "to": "USD",
      "pair": "BTC/USD",
      "price": 111014.4,
      "pairPrice": 111014.4,
      "volume": 1967687277427.2,
      "pairVolume": 17724613
    }
  }
]
{
"statusCode": 400,
"message": "Bad Request",
"requestId": "11111111-2222-3333-4444-555555555555",
"path": "<requested-endpoint>"
}
{
"statusCode": 401,
"message": "Unauthorized",
"requestId": "11111111-2222-3333-4444-555555555555",
"path": "<requested-endpoint>"
}
{
"statusCode": 403,
"message": "Forbidden",
"requestId": "11111111-2222-3333-4444-555555555555",
"path": "<requested-endpoint>"
}
{
"statusCode": 404,
"message": "Not Found",
"requestId": "11111111-2222-3333-4444-555555555555",
"path": "<requested-endpoint>"
}
{
"statusCode": 409,
"message": "Transactions not synced",
"requestId": "11111111-2222-3333-4444-555555555555",
"path": "<requested-endpoint>"
}
{
"statusCode": 429,
"message": "Rate limit exceeded",
"requestId": "11111111-2222-3333-4444-555555555555",
"path": "<requested-endpoint>"
}
{
"statusCode": 503,
"message": "Service Unavailable. Please Contact Support"
}
3 credits per request

  • coinId: Coin identifier (the markets are returned for this coin).
  • limit & skip: Control pagination.

Authorizations

X-API-KEY
string
header
required

API key required to access the endpoints. Generate one from your dashboard at https://openapi.coinstats.app and pass it in the X-API-KEY request header. Never expose your key in client-side code.

Query Parameters

page
number

Page number to retrieve (1-based indexing)

Example:

1

limit
number

Number of items to return per page

Example:

20

exchange
string

Filter tickers by exchange name (case-insensitive exact match)

Example:

"Binance"

fromCoin
string

Filter by base currency symbol of the trading pair

Example:

"BTC"

toCoin
string

Filter by quote currency symbol of the trading pair

Example:

"USDT"

coinId
string

Filter by unique coin identifier (e.g., "bitcoin" for BTC)

Example:

"bitcoin"

onlyVerified
boolean

When true, returns only verified tickers with recent updates and no fake volume flags

Example:

false

Response

Get ticker market list

meta
object
required

Pagination metadata including total count, page number, and limit

Example:
{
"page": 1,
"limit": 20,
"itemCount": 57072,
"pageCount": 2854,
"hasPreviousPage": false,
"hasNextPage": true
}
result
object[]
required

Array of ticker market data for trading pairs

Example:
{
"_created_at": "2023-04-13T07:34:24.442Z",
"_updated_at": "2025-08-27T10:56:44.779Z",
"exchange": "BinanceFutures",
"from": "BTC",
"to": "USD",
"pair": "BTC/USD",
"price": 111014.4,
"pairPrice": 111014.4,
"volume": 1967687277427.2,
"pairVolume": 17724613
}