/v1/meta
Service metadata
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/coinstore-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/coinstore-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/coinstore-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/coinstore-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"name": "Coinstore Market Data API",
"source": "Coinstore public REST (api.coinstore.com)",
"endpoints": [
{
"path": "/v1/tickers",
"description": "24h tickers for all symbols, or one via ?symbol="
},
{
"path": "/v1/prices",
"description": "Latest price for all symbols, or one via ?symbol="
},
{
"path": "/v1/orderbook",
"description": "Order-book depth for a symbol (?symbol=BTCUSDT)"
},
{
"path": "/v1/trades",
"description": "Recent trades for a symbol (?symbol=BTCUSDT)"
},
{
"path": "/v1/meta",
"description": "This metadata document"
}
],
"disclaimer": "Unofficial proxy of public Coinstore endpoints. Not affiliated with Coinstore. Market data only; no guarantees of accuracy or availability.",
"description": "Public spot market data from the Coinstore exchange: 24h tickers, latest prices, order-book depth and recent trades across 480+ spot trading pairs.",
"market_type": "spot"
},
"meta": {
"timestamp": "2026-06-15T11:15:13.192Z",
"request_id": "cde123f0-edb0-4aa2-9bd5-e2d4d48500ae"
},
"status": "ok",
"message": "Meta",
"success": true
}