Vai al contenuto
GET /v1/meta

Spec

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/cryptoseasonality-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

curl "https://api.oanor.com/cryptoseasonality-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/cryptoseasonality-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/cryptoseasonality-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/cryptoseasonality-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": "symbol is a Binance pair (BTCUSDT) or coin=BTC&quote=USDT. hourly uses up to ~41 days of hourly candles (candles=1000); dayofweek up to a year of daily candles (days=365). All times UTC. Patterns are descriptive, not predictive. Read fresh per call; only the tradable-symbol list is cached hourly.",
        "source": "Binance public REST (api.binance.com/api/v3/klines, live)",
        "service": "cryptoseasonality-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/hourly": "24-hour UTC profile: avg return, volume, range and up-rate per hour (symbol=BTCUSDT).",
            "GET /v1/symbols": "Tradable Binance pairs, optionally filtered by quote (quote=USDT).",
            "GET /v1/dayofweek": "Seven-weekday profile from daily candles (symbol=BTCUSDT, days=365)."
        },
        "description": "Crypto intraday and day-of-week seasonality, computed live from Binance candles (no key, nothing stored). hourly buckets recent hourly candles by UTC hour of day and returns each hour's average return, volume, high-low range and up-rate, plus the most volatile and most bullish hours. dayofweek does the same across the seven weekdays from daily candles. symbols lists tradable pairs. The intraday/seasonality pattern cut for crypto — distinct from the raw OHLCV candle feed, the realised-volatility API and the FX-seasonality (calendar-month) API. It tells you WHEN a market tends to move.",
        "trading_symbols": 1370,
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-12T01:41:07.207Z",
        "request_id": "9dd3a6a9-250a-4672-970c-62e619c6ed5e"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}