/v1/meta
Service metadata and endpoint list
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/bitso-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/bitso-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/bitso-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/bitso-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": "Bitso API (api.bitso.com/v3, live)",
"service": "bitso-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/books": "List trading pairs with fees and limits (quote=mxn optional).",
"GET /v1/ticker": "Ticker for one book (book=btc_mxn or symbol=btc"e=mxn).",
"GET /v1/tickers": "All books ranked by approximate 24h quote volume (limit=50).",
"GET /v1/orderbook": "Live market depth — top bids and asks (book=btc_mxn, limit=20)."
},
"book_count": 98,
"description": "Live spot market data from Bitso, the largest regulated crypto exchange in Latin America (Mexico, Argentina, Brazil, Colombia). The ticker endpoint returns a book's last price, 24h high/low, best bid/ask, VWAP, volume and 24h change (in Mexican peso, Argentine peso, US dollar, Bitcoin and more); the tickers endpoint ranks every book by approximate 24h quote volume; the books endpoint lists trading pairs with min/max order size, tick size and maker/taker fees; the orderbook endpoint returns live market depth. Live, no key, nothing stored. A distinct Latin-American venue with local-fiat pricing, separate from other exchange feeds.",
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-10T22:56:26.651Z",
"request_id": "1fbcd0e6-8494-469e-b8b0-fc6cc7a88050"
},
"status": "ok",
"message": "Meta",
"success": true
}