/v1/meta
Spec
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
curl "https://api.oanor.com/futurescurve-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/futurescurve-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/futurescurve-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/futurescurve-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"data": {
"note": "currency is BTC or ETH. annualized_basis_pct = (future/spot − 1) × 365/days. expiry is a Deribit code (e.g. 26JUN26) from /v1/curve. Read fresh per call, nothing cached.",
"source": "Deribit public API (deribit.com/api/v2/public, live)",
"service": "futurescurve-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/basis": "Annualised basis (cash-and-carry yield) for one expiry or the front future (currency=BTC, expiry optional).",
"GET /v1/curve": "Full futures curve: perp + every dated future with annualised basis, and the contango/backwardation shape (currency=BTC)."
},
"currencies": [
"BTC",
"ETH"
],
"description": "Crypto futures term structure and basis curve, read live from Deribit's public futures book (no key, nothing stored). curve returns the spot index, the perpetual and every dated future for a currency — each with days to expiry, mark, basis to spot and annualised basis — plus the contango/backwardation shape and the front/back annualised basis. basis returns the annualised basis (cash-and-carry yield) for a chosen expiry or the front future. The futures-curve / term-structure cut — distinct from the spot-versus-perpetual basis API (a single point), the funding-rate, options and price APIs.",
"upstream_status": "ok",
"btc_dated_futures": 12
},
"meta": {
"timestamp": "2026-06-12T01:41:10.821Z",
"request_id": "3c35fe6d-a91e-4677-87c1-320cecdd2073"
},
"status": "ok",
"message": "Meta",
"success": true
}