/v1/meta
Service metadata and endpoint list
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/mercadobitcoin-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/mercadobitcoin-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/mercadobitcoin-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/mercadobitcoin-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"note": "Pairs are BASE-QUOTE (e.g. BTC-BRL). The ticker endpoint accepts comma-separated pairs.",
"source": "Mercado Bitcoin API (api.mercadobitcoin.net/api/v4, live)",
"service": "mercadobitcoin-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/ticker": "Ticker for one or more pairs (pair=BTC-BRL or symbol=BTC"e=BRL; comma-separated allowed).",
"GET /v1/symbols": "List trading pairs (quote=BRL optional).",
"GET /v1/orderbook": "Live market depth — best bid/ask and spread (pair=BTC-BRL, limit=20)."
},
"description": "Live spot market data from Mercado Bitcoin, Brazil's largest and oldest crypto exchange. The ticker endpoint returns a pair's last price, buy/sell, 24h high/low, open and 24h change (in Brazilian real); the orderbook endpoint returns live market depth with best bid/ask and spread; the symbols endpoint lists 1,300+ trading pairs. Live, no key, nothing stored. A distinct Brazilian / Latin-American venue with real pricing, separate from other exchange feeds.",
"symbol_count": 1331,
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-11T07:49:32.455Z",
"request_id": "bb0bf0bf-52c5-4cb7-a61f-fb295fcd0674"
},
"status": "ok",
"message": "Meta",
"success": true
}