invinoveritas /signals/full — the live Hyperliquid perps read our own bot enters on, recom
invinoveritas /signals/full — the live Hyperliquid perps read our own bot enters on, recomputable per coin from the raw metrics we return (funding + 24h delta,
31440 (raw units)
price
1
calls / 30d
1
unique payers
2026-08-26
updated
Provider
api.babyblueviper.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x161DbdD73D025E9aEdd4918a67c28e5bf9A87Fb9",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "31440",
"maxTimeoutSeconds": 60
},
{
"scheme": "exact",
"network": "xrpl:0",
"payTo": "rhFHztjS63h6fs5vXgTotuL7jsuryUvDSF",
"asset": "XRP",
"amount": "21907",
"maxTimeoutSeconds": 60
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"type": "http"
},
"output": {
"example": {
"btc_dvol": {
"dvol": 37.16,
"stale": false
},
"disclaimer": "Derivatives market-data feed, not financial advice.",
"schema": "invinoveritas.signals.v1",
"signals": [
{
"basis_bps": -1.96,
"coin": "BTC",
"funding_delta_24h": 3.5e-7,
"funding_rate_hourly": 0.0000125,
"open_interest_usd": 2230270432,
"realized_vol_15m_pct": 0.16,
"regime": "compression",
"vol_expansion_ratio": 0.77
}
],
"teaser": false,
"venue": "hyperliquid"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET",
"HEAD",
"DELETE"
],
"type": "string"
},
"queryParams": {
"properties": {},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://api.babyblueviper.com/signals/full" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://api.babyblueviper.com/signals/full");
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://api.babyblueviper.com/signals/full")
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/3238.json, and this resource appears in /discovery/resources and /discovery/search.