Omni Terminal compares current Hyperliquid 1h funding with mechanical 8h, 1d and APR proje
Omni Terminal compares current Hyperliquid 1h funding with mechanical 8h, 1d and APR projections, open interest, volume, premium, and mark-oracle basis for one perpetual market.
3000 (raw units)
price
17
calls / 30d
4
unique payers
2026-09-17
updated
Provider
omniterminal.app · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:84532",
"payTo": "0x733f40A4FA0cd13d59aBADE04b9eD2e9acAc6457",
"asset": "0x036CbD53842c5426634e7929541eC2318f3dCF7e",
"amount": "3000",
"maxTimeoutSeconds": 300
},
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x733f40A4FA0cd13d59aBADE04b9eD2e9acAc6457",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "3000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"pathParams": {
"symbol": "BTC"
},
"queryParams": {},
"type": "http"
},
"output": {
"example": {
"canonical_symbol": "hyperliquid:BTC:USDC:perp",
"carry": {
"annualization_method": "simple_current_hourly_rate_x_8760",
"funding_annualized_pct": 10.95,
"funding_apr_pct": 10.95,
"funding_direction": "longs_pay_shorts",
"funding_rate_1d": 0.0003,
"funding_rate_8h": 0.0001,
"funding_rate_per_hour": 0.0000125,
"premium": -0.0002979165,
"projection_basis": "current_hourly_rate_mechanical_projection",
"settlement_interval": "1h"
},
"data_as_of": "2026-07-28T11:59:55.000Z",
"dex": "main",
"freshness": {
"age_seconds": 5,
"data_as_of": "2026-07-28T11:59:55.000Z",
"max_age_seconds": 120,
"status": "fresh"
},
"generated_at": "2026-07-28T12:00:00.000Z",
"market_type": "perp",
"positioning": {
"day_base_volume": 35060.91552,
"day_notional_volume_usd": 2255876954.93,
"open_interest_base": 36639.5983,
"open_interest_usd": 2324264117.62
},
"prices": {
"mark": 63440.5,
"mark_oracle_basis_bps": 0,
"midpoint": 63440.5,
"oracle": 63440.5,
"previous_day": 65087,
"price_change_24h_pct": -2.5297
},
"product_version": "v1",
"quote": "USDC",
"schema": "hyperliquid_market_carry.v1",
"service": "omni.hyperliquid_market_carry",
"symbol": "BTC",
"usage": {
"current_snapshot_only": true,
"historical_series_included": false
},
"venue": "hyperliquid"
},
"type": "json"
}
},
"routeTemplate": "/api/x402/v1/market-carry/:symbol",
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"pathParams": {
"properties": {
"symbol": {
"description": "Allowlisted uppercase perpetual-market symbol, for example BTC.",
"type": "string"
}
},
"required": [
"symbol"
],
"type": "object"
},
"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"
}
},
"builder-code": {
"info": {
"a": "bc_wttcxbb6"
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"a": {
"description": "App builder code",
"pattern": "^[a-z0-9_]{1,32}$",
"type": "string"
},
"s": {
"description": "Service builder codes",
"items": {
"pattern": "^[a-z0-9_]{1,32}$",
"type": "string"
},
"type": "array"
},
"w": {
"description": "Wallet builder code",
"pattern": "^[a-z0-9_]{1,32}$",
"type": "string"
}
},
"type": "object"
}
}
}Use it
curl
curl "https://omniterminal.app/api/x402/v1/market-carry/:symbol" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://omniterminal.app/api/x402/v1/market-carry/:symbol");
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://omniterminal.app/api/x402/v1/market-carry/:symbol")
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/1449.json, and this resource appears in /discovery/resources and /discovery/search.