Funding rates per venue for one crypto perpetual, or the whole cross-venue set i
Funding rates per venue for one crypto perpetual, or the whole cross-venue set in one call. Major CEX and DEX venues — Binance, Bybit, OKX, Bitget, Gate.io, KuCoin, Hyperliquid, Paradex, Orderly, Lighter and more. Each row carries the venue's rate, its funding interval and the 8h-equivalent rate (venues quote on 1h/4h/8h, so raw rates are not comparable), plus canonical_id, asset_class and mark_price, so a ticker naming two unrelated assets is visible, not silently mixed.
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
GET https://api.usenami.io/v1/funding/current
| Category | Market data |
|---|---|
| Provider host | api.usenami.io |
| Networks | eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 7 from 6 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-24 | valid payment request | 402 | $0.001 | 748 ms |
Example input (from the provider)
{
"method": "GET",
"queryParams": {
"include_uncomparable": {
"description": "Default false. False returns only rows that pass canonical-identity and cross-venue dispersion checks. True adds back the rows those checks reject \u2014 useful if you run your own filtering, misleading if you don't: one ticker can name two unrelated assets (SPX is both the S&P index and a meme coin). The response echoes `comparable_only` so you always know which slice you got.",
"required": false,
"type": "boolean"
},
"limit": {
"description": "Rows per page. Default 100, max 1000. Unfiltered the set is ~9,000 rows, so paging is how you avoid buying all of it into your context.",
"maximum": 1000,
"minimum": 1,
"required": false,
"type": "integer"
},
"offset": {
"description": "Row offset for the next page. Default 0. The response carries total/limit/offset/has_more, so you know when to stop.",
"minimum": 0,
"required": false,
"type": "integer"
},
"symbol": {
"description": "Filter by symbol (e.g. BTC-PERP). Omit for all.",
"required": false,
"type": "string"
}
},
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"properties": {
"method": {
"type": "string"
},
"type": {
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}