Per-venue basis for one crypto perpetual — mark versus index price, basis_bps =
Per-venue basis for one crypto perpetual — mark versus index price, basis_bps = (mark−index)/index×10000, and contango/backwardation structure, across tracked CEX and DEX venues. Every venue has an index except Crypto.com, Variational and dYdX; dYdX publishes one oracle price, which is its mark. `venues_without_index` names the ones missing. Each venue also carries liquidity_state (live/dead/unknown), and a market with no trading is flagged unreliable however clean its basis looks.
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/perp/basis
| Category | Market data |
|---|---|
| Provider host | api.usenami.io |
| Networks | eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 3 from 1 payers (the provider's figure, not ours) |
Our checks, last 30 days
We never call tools that send, buy, move money or file anything, not even without paying.
Example input (from the provider)
{
"method": "GET",
"queryParams": {
"canonical_id": {
"description": "Disambiguates a ticker that names two unrelated assets; a 409 on the ticker alone names the candidates.",
"required": false,
"type": "string"
},
"ticker": {
"description": "Base ticker (e.g. BTC, ETH). Required.",
"required": true,
"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"
}