# QuantOracle Live Funding Rates

> QuantOracle Live Funding Rates is a paid API for AI agents from api.quantoracle.dev, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Returns real-time perpetual futures funding rates for a specified crypto asset (USDT perp)

## Facts

- Endpoint: POST https://api.quantoracle.dev/v1/live/funding-rates
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/quantoracle-live-funding-rates-a8861f53
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ec6h2J45kCec9XdZRqTRc

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability quantoracle-live-funding-rates-a8861f53 -d '<json body>'
```

Example prompt: What's the live funding rate for BTC on its USDT perpetual contract right now?

## When to prefer this

Use this endpoint when you need real-time perpetual futures funding rates for a specific crypto asset (BTC, ETH, SOL, etc.) and want quantitative-grade live data. Prefer this over exchange-specific APIs when you need a unified interface for funding rate data within the QuantOracle ecosystem, especially if you are already using other QuantOracle endpoints for risk, indicators, or statistical analysis.

## Known failure modes

- Invalid or unsupported asset symbol returns an error or empty response
- Network timeout if live data feed is unavailable
- Payment failure (x402 protocol) if USDC balance is insufficient
- Asset symbol formatted incorrectly (e.g. 'bitcoin' instead of 'BTC') may return no data

## How this service works

QuantOracle: live/funding-rates

## Output

An object containing live funding rate data for the specified crypto asset's USDT perpetual futures contract, including the current funding rate value and associated metadata.

## Example request

```json
{
 "asset": "BTC"
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "asset": {
   "type": "string",
   "title": "Asset",
   "default": "BTC",
   "description": "Crypto asset symbol, e.g. BTC, ETH, SOL (USDT perp)."
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/quantoracle-live-funding-rates-a8861f53/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.quantoracle.dev](https://www.zero.xyz/host/api.quantoracle.dev/llms.txt)
