Compact BTC funding regime state from a four-venue normalized surface: regime label, surfa
Compact BTC funding regime state from a four-venue normalized surface: regime label, surface median, 30d z-score, same-sign share, spread, dispersion, venue count, freshness. Ed25519-signed. Data, not advice.
10000 (raw units)
price
8
calls / 30d
6
unique payers
2026-09-17
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": "10000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {},
"type": "http"
},
"output": {
"example": {
"disclaimer": "Data, not investment advice.",
"dispersion_z_30d": 0.61,
"freshness": {
"as_of": "2026-08-19T14:00:00.000Z",
"cadence": "hourly"
},
"full_4venue_flag": true,
"median_z_30d": 1.42,
"oracle": "rcq.btc.funding_regime.v1",
"provenance": {
"alg": "ed25519",
"public_key": "4bc079775b77a6498b91185f9e5fded294a58463a07c96b74a8c27b9b3f8879d"
},
"regime_state": "LONG_CROWDING",
"same_sign_share": 1,
"surface_median": 0.000105,
"surface_spread": 0.000044,
"timestamp": "2026-08-19T14:00:00.000Z",
"venue_count": 4
},
"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": {
"disclaimer": {
"type": "string"
},
"dispersion_z_30d": {
"type": "number"
},
"freshness": {
"type": "object"
},
"full_4venue_flag": {
"type": "boolean"
},
"median_z_30d": {
"type": "number"
},
"oracle": {
"type": "string"
},
"provenance": {
"type": "object"
},
"regime_state": {
"enum": [
"LONG_CROWDING",
"SHORT_CROWDING",
"CROSS_VENUE_DISLOCATION",
"REGIME_SHIFT",
"NEUTRAL"
],
"type": "string"
},
"same_sign_share": {
"type": "number"
},
"surface_median": {
"type": "number"
},
"surface_spread": {
"type": "number"
},
"timestamp": {
"format": "date-time",
"type": "string"
},
"venue_count": {
"type": "integer"
}
},
"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-regime" # -> 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-regime");
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-regime")
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/4852.json, and this resource appears in /discovery/resources and /discovery/search.