/v1/meta
Spec
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
curl "https://api.oanor.com/bitstamp-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/bitstamp-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/bitstamp-api/v1/meta");
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/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"data": {
"source": "Bitstamp public HTTP API v2 (live)",
"service": "bitstamp-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/ohlc": "OHLC candles (pair=btcusd, step=60..259200 seconds).",
"GET /v1/ticker": "A pair's full ticker (pair=btcusd): last, bid/ask, 24h OHLC, VWAP, 24h % change, volume.",
"GET /v1/trades": "Live trade tape — recent executed trades (pair=btcusd, time=minute|hour|day).",
"GET /v1/markets": "All trading pairs with decimals, minimum order and status (status=all to include disabled).",
"GET /v1/tickers": "Ticker snapshot for every pair in one call (sort=change|volume, market_type=SPOT).",
"GET /v1/orderbook": "Top of the order book with spread (pair=btcusd, depth)."
},
"description": "Live market data from Bitstamp's public API, one of the oldest crypto exchanges (2011), strong in EUR and GBP pairs: all trading pairs with decimals, minimum order and status; a pair's full ticker (last, bid/ask, 24h open/high/low, VWAP, 24h % change, volume); the same snapshot for every pair in one call; the order book with spread; the live trade tape (recent executed trades with price, amount, side, time); and OHLC candles at a chosen step. Live venue data, no key, nothing stored. Distinct from Coinbase, Binance and Kraken venue APIs and from aggregated feeds — this is Bitstamp's own order book, trade tape and EUR/GBP markets.",
"pairs_available": 296,
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-09T11:38:25.954Z",
"request_id": "ed9e1894-f9f3-4a67-8b74-c018fc2d6c29"
},
"status": "ok",
"message": "Meta",
"success": true
}