# Orchard Data Crypto Funding Rates

> Orchard Data Crypto Funding Rates is a paid API for AI agents from orchard-data.letom1176.workers.dev, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-15).

Returns current perpetual futures funding rates (rate percentage and annualized) plus mark prices for crypto assets like BTC

## Facts

- Endpoint: GET https://orchard-data.letom1176.workers.dev/api/funding-rates
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/orchard-data-crypto-funding-rates-1b7fd21d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_pv0EfkIOpIMDp8W2np_W8

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 orchard-data-crypto-funding-rates-1b7fd21d
```

Example prompt: What's the current 8-hour funding rate and annualized funding rate for BTC perpetual futures right now?

## When to prefer this

Choose this endpoint when you need lightweight, per-call crypto perpetual funding rate data without a subscription — especially suitable for AI agents that pay per-use via x402 USDC micropayments on Base. Prefer it over exchange APIs when you want normalized, aggregated funding data without managing API keys.

## Known failure modes

- 402 Payment Required if x402 USDC payment on Base is not attached
- Empty or stale data if upstream exchange feed is unavailable
- Rate limiting if too many requests are made without payment
- Malformed response if the underlying exchange API schema changes

## How this service works

Market data for AI agents, paid per-call via x402 (USDC on Base). Free index at /, free spec here.

## Output

A JSON array of funding objects, each containing the asset symbol (e.g. 'BTC'), the current mark price, the 8-hour funding rate as a percentage, and the annualized funding rate as a percentage. Example: {symbol:'BTC', mark_last:63376, funding_rate_pct_8h:0.0048, funding_annualized_pct:5.3}.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "funding": [
   {
    "symbol": "BTC",
    "mark_last": 63376,
    "funding_rate_pct_8h": 0.0048,
    "funding_annualized_pct": 5.3
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/orchard-data-crypto-funding-rates-1b7fd21d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from orchard-data.letom1176.workers.dev](https://www.zero.xyz/host/orchard-data.letom1176.workers.dev/llms.txt)
