Skip to content
GET /v1/tickers

All pairs ticker snapshot

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/bitstamp-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

curl "https://api.oanor.com/bitstamp-api/v1/tickers" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/bitstamp-api/v1/tickers", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/bitstamp-api/v1/tickers");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
    "https://api.oanor.com/bitstamp-api/v1/tickers",
    headers={"x-oanor-key": "oanor_test_..."}
)

Example response

A real response from this endpoint, captured by the latest health check.

{
    "data": {
        "sort": "change",
        "count": 312,
        "source": "Bitstamp",
        "tickers": [
            {
                "ask": 0.0372,
                "bid": 0.0287,
                "last": 0.0301,
                "pair": "STRK/EUR",
                "vwap": 0.0301,
                "spread": 0.0085,
                "low_24h": 0.0262,
                "high_24h": 0.0301,
                "open_24h": 0.0262,
                "timestamp": 1781005104,
                "volume_24h": 1247.54,
                "market_type": "SPOT",
                "change_24h_pct": 14.89
            },
            {
                "ask": 0.010299,
                "bid": 0.003843,
                "last": 0.004374,
                "pair": "XCN/USD",
                "vwap": 0.003856,
                "spread": 0.006456,
                "low_24h": 0.003843,
                "high_24h": 0.004374,
                "open_24h": 0.003843,
                "timestamp": 1781005104,
                "volume_24h": 765068.9,
                "market_type": "SPOT",
                "change_24h_pct": 13.82
            },
            {
                "ask": 0.035393,
                "bid": 0.035373,
                "last": 0.035384,
                "pair": "CHIP/USD",
                "vwap": 0.033711,
                "spread": 2.0e-5,
                "low_24h": 0.03129,
                "high_24h": 0.035938,
                "open_24h": 0.03161,
                "timestamp": 1781005104,
                "volume_24h": 20321130.1,
                "market_type": "SPOT",
                "change_24h_pct": 11.94
            },
            {
                "ask": 468.17,
                "bid": 453.79,
                "last": 469.25,
                "pair": "ZEC/USD",
                "vwap": 463.04,
                "spread": 14.38,
                "low_24h": 420.72,
                "high_24h": 506.31,
                "open_24h": 420.72,
                "timestamp": 1781005104,
                "volume_24h": 418.49661,
                "market_type": "SPOT",
                "change_24h_pct": 11.53
            },
            {
                "ask": 1.0e-7,
                "bid": 9.0e-8,
                "last": 1.0e-7,
                "pair": "MOG/EUR",
                "vwap": 9.0e-8,
                "spread": 1.0e-8,
                "low_24h": 9.0e-8,
                "high_24h": 1.0e-7,
                "open_24h": 9.0e-8,
                "timestamp": 1781005104,
                "volume_24h": 227290835,
                "market_type": "SPOT",
                "change_24h_pct": 11.11
            },
            {
                "ask": 0.02365,
                "bid": 0.02352,
                "last": 0.02357,
                "pair": "CHZ/EUR",
                "vwap": 0.02287,
                "spread": 0.00013,
                "low_24h": 0.02164,
                "high_24h": 0.02385,
                "open_24h": 0.02164,
                "timestamp": 1781005104,
                "volume_24h": 849
…