BTC perpetual funding normalized across four independent venues (Bitnomial, OKX, Hyperliqu
BTC perpetual funding normalized across four independent venues (Bitnomial, OKX, Hyperliquid, dYdX) into one hourly surface: per-venue rates, dispersion, z-scores, regime state. Ed25519-signed. Data, not investment advice.
30000 (raw units)
price
2
calls / 30d
2
unique payers
2026-08-22
updated
Provider
data.rcqsignals.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x510d1c21788166b0a39f83796bf624e006849690",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "30000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {},
"type": "http"
},
"output": {
"example": {
"disclaimer": "Data, not investment advice.",
"dispersion_change_8h": 0.0000021,
"dispersion_z_30d": 0.61,
"freshness": {
"as_of": "2026-08-19T14:00:00.000Z",
"cadence": "hourly",
"venue_interval_note": "no imputation beyond each venue's native funding interval"
},
"full_4venue_flag": true,
"license": "RCQ-DATA-1.0; attribution required, no redistribution",
"median_change_24h": -0.000004,
"median_change_8h": 0.000012,
"median_z_30d": 1.42,
"negative_share": 0,
"normalization_version": "1.1.0",
"oracle": "rcq.btc.funding_surface.v1",
"positive_share": 1,
"provenance": {
"alg": "ed25519",
"public_key": "4bc079775b77a6498b91185f9e5fded294a58463a07c96b74a8c27b9b3f8879d"
},
"regime_state": "LONG_CROWDING",
"same_sign_share": 1,
"spread_z_30d": 0.88,
"status": "ok",
"surface_mad": 0.0000135,
"surface_max": 0.000131,
"surface_mean": 0.000107,
"surface_median": 0.000105,
"surface_min": 0.000087,
"surface_skew": 0.31,
"surface_spread": 0.000044,
"surface_std": 0.0000186,
"timestamp": "2026-08-19T14:00:00.000Z",
"venue_count": 4,
"venues": {
"bitnomial": 0.000112,
"dydx": 0.000087,
"hyperliquid": 0.000131,
"okx": 0.000098
}
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"properties": {},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"audit": {
"description": "Validation provenance, including the rejected directional hypothesis",
"type": "object"
},
"disclaimer": {
"type": "string"
},
"dispersion_change_8h": {
"type": "number"
},
"dispersion_z_30d": {
"type": "number"
},
"freshness": {
"type": "object"
},
"full_4venue_flag": {
"type": "boolean"
},
"license": {
"type": "string"
},
"median_change_24h": {
"type": "number"
},
"median_change_8h": {
"type": "number"
},
"median_z_30d": {
"type": "number"
},
"negative_share": {
"type": "number"
},
"normalization_version": {
"type": "string"
},
"oracle": {
"type": "string"
},
"positive_share": {
"type": "number"
},
"provenance": {
"type": "object"
},
"regime_state": {
"enum": [
"LONG_CROWDING",
"SHORT_CROWDING",
"CROSS_VENUE_DISLOCATION",
"REGIME_SHIFT",
"NEUTRAL"
],
"type": "string"
},
"same_sign_share": {
"type": "number"
},
"spread_z_30d": {
"type": "number"
},
"status": {
"type": "string"
},
"surface_mad": {
"type": "number"
},
"surface_max": {
"type": "number"
},
"surface_mean": {
"type": "number"
},
"surface_median": {
"type": "number"
},
"surface_min": {
"type": "number"
},
"surface_skew": {
"type": "number"
},
"surface_spread": {
"type": "number"
},
"surface_std": {
"type": "number"
},
"timestamp": {
"format": "date-time",
"type": "string"
},
"venue_count": {
"maximum": 4,
"minimum": 3,
"type": "integer"
},
"venues": {
"description": "Per-venue normalized funding rate, keyed by venue id",
"type": "object"
}
},
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://data.rcqsignals.com/v1/fetch/btc-funding-surface" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://data.rcqsignals.com/v1/fetch/btc-funding-surface");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://data.rcqsignals.com/v1/fetch/btc-funding-surface")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/4855.json, and this resource appears in /discovery/resources and /discovery/search.