# Crypto Funding Rates Oracle

> Crypto Funding Rates Oracle is a paid API for AI agents from home.chrz.dev, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-13).

Returns live perpetual futures funding rates and APR opportunities across exchanges for AI agents, paid via x402 micro-payment on Solana mainnet.

## Facts

- Endpoint: POST https://home.chrz.dev/agent-dust/v1/agent/funding-rates
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/crypto-funding-rates-oracle-6abf48f7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_RdmZ7LlNqxmpSIRFnjxm6

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 crypto-funding-rates-oracle-6abf48f7 -d '<json body>'
```

Example prompt: Pull the current top perpetual futures funding rate opportunities right now — I want to see which symbols have the highest APR, which exchange they're on, and when the next funding event hits.

## When to prefer this

Choose this endpoint when an AI agent needs real-time perpetual futures funding rate data sorted by opportunity (APR), especially for cross-exchange scanning. It is specifically optimized for agent-native x402 micropayment flows on Solana mainnet, making it ideal for autonomous trading agents that need to pay per-call without API key management. Prefer it over free alternatives when you need curated, ranked opportunity data rather than raw feed data.

## Known failure modes

- Payment not included or invalid x402 Solana payment header — returns 402 Payment Required
- Insufficient USDC balance on agent wallet — payment fails before data is returned
- Exchange data temporarily unavailable — ok may be false or opportunities array may be empty
- Rate limiting if called too frequently without valid payment
- Network timeout on Solana mainnet payment confirmation

## How this service works

x402-paid Solana mainnet wallet preflight oracle for agents.

## Output

A JSON object with ok status, a checked_at timestamp, and an array of opportunities each containing: symbol (e.g. 1000RATSUSDT), exchange (e.g. bybit), funding_rate (e.g. 0.001), interval_hours (e.g. 8), apr (e.g. 109.5), and next_funding_time (ISO timestamp).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input",
  "output"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "required": [],
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "ok",
      "opportunities"
     ],
     "properties": {
      "ok": {
       "type": "boolean"
      },
      "checked_at": {
       "type": "integer"
      },
      "opportunities": {
       "type": "array"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "checked_at": 0,
  "opportunities": [
   {
    "apr": 109.5,
    "symbol": "1000RATSUSDT",
    "exchange": "bybit",
    "funding_rate": 0.001,
    "interval_hours": 8,
    "next_funding_time": "..."
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/crypto-funding-rates-oracle-6abf48f7/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from home.chrz.dev](https://www.zero.xyz/host/home.chrz.dev/llms.txt)
