/v1/meta
Service metadata
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
curl "https://api.oanor.com/cryptostocks-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/cryptostocks-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/cryptostocks-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/cryptostocks-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"note": "stocks, summary and meta take no parameters. category takes category (miners, exchanges or treasury, required). stock takes ticker (a tracked crypto stock, required). Prices and volumes are in USD. The universe is curated US-listed crypto-exposure equities; a ~10-minute cache fronts the upstream.",
"source": "Yahoo Finance (per-stock daily chart), keyless, live",
"service": "cryptostocks-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/stock": "One company's detail by ticker (ticker=MSTR).",
"GET /v1/stocks": "All crypto-exposure stocks ranked by volume.",
"GET /v1/summary": "Complex-wide read — category performance, leader, gainer/loser.",
"GET /v1/category": "One sub-group (miners/exchanges/treasury) + its average move."
},
"categories": [
"miners",
"exchanges",
"treasury"
],
"description": "The public stocks that give exposure to crypto, tracked live and keyless from Yahoo Finance — the Bitcoin miners, the exchanges/brokers and the Bitcoin-treasury companies that trade as a high-beta play on crypto. The stocks endpoint lists every tracked name ranked by volume (price, change, volume, category); category filters to miners, exchanges or treasury with the group's average move; stock returns one company by ticker; summary gives the complex-wide read — miners vs exchanges vs treasury performance, the leading sub-group and the day's gainer and loser. The crypto-equities cut — distinct from the spot-crypto-ETF feed (passive funds, not operating companies), the corporate-Bitcoin-treasury feed (BTC holdings, not stock price) and the coin price feeds.",
"sample_stock": {
"name": "Strategy Inc",
"price": 123.64,
"ticker": "MSTR",
"change_pct": 7.19
},
"tracked_tickers": [
"MARA",
"RIOT",
"CLSK",
"CIFR",
"WULF",
"HUT",
"BITF",
"IREN",
"HIVE",
"BTBT",
"CORZ",
"BTDR",
"COIN",
"HOOD",
"BAKKT",
"MSTR",
"SMLR",
"GLXY"
],
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-12T19:35:42.618Z",
"request_id": "1f3ebb76-8dcf-45d3-814d-bf165054c4bd"
},
"status": "ok",
"message": "Meta",
"success": true
}