# Agent Signals – Crypto Funding Rate Signal (x402)

> Agent Signals – Crypto Funding Rate Signal (x402) is a paid API for AI agents from cryptojp.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns real-time perpetual funding-rate data and market bias signal for a given crypto asset across major venues, settled via x402 micropayment.

## Facts

- Endpoint: GET https://cryptojp.com/v1/funding
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agent-signals-crypto-funding-rate-signal-x402-bbbe9ef7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_z3VUhKdpqihHuWE3ZJ6CA

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 agent-signals-crypto-funding-rate-signal-x402-bbbe9ef7
```

Example prompt: What's the current funding rate situation for BTC — are longs crowded, and what's the annualized rate across Binance, OKX, and Bybit?

## When to prefer this

Use this endpoint when an AI trading agent needs real-time perpetual futures funding rate intelligence across multiple venues for a specific crypto asset, particularly to assess crowded positioning risk (long-squeeze or short-squeeze) before entering or exiting a trade. Prefer this over generic market data APIs when you need cross-venue dispersion analysis and a pre-computed bias interpretation rather than raw tick data.

## Known failure modes

- Missing or invalid 'symbol' query parameter returns an error
- Payment not settled via x402 returns HTTP 402 Payment Required
- Unknown or unsupported asset symbol may return empty or error response
- Network/upstream venue data unavailability may cause stale or partial results

## How this service works

Pay-per-call crypto market-intelligence API for autonomous AI trading agents. Funding-rate, BTC lead-lag and trend/chop regime signals, settled in USDC over x402.

## Output

A JSON object containing: per-venue funding rates (OKX, Bybit, Binance), average 8-hour funding rate, annualized funding rate percentage, cross-venue dispersion, a market bias label (e.g. 'crowded_long'), and a plain-English interpretation of long-squeeze or short-squeeze risk.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "symbol": "BTC"
  }
 }
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "symbol"
     ],
     "properties": {
      "symbol": {
       "type": "string",
       "description": "Base asset symbol, e.g. BTC, ETH, SOL."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "base": "BTC",
  "bias": "crowded_long",
  "venues": {
   "okx": 0.00011,
   "bybit": 0.000095,
   "binance": 0.0001
  },
  "annualizedPct": 11.16,
  "interpretation": "Longs are paying shorts; positioning is crowded long — elevated long-squeeze risk.",
  "avgFundingRate8h": 0.000102,
  "crossVenueDispersion": 0.000015
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agent-signals-crypto-funding-rate-signal-x402-bbbe9ef7/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from cryptojp.com](https://www.zero.xyz/host/cryptojp.com/llms.txt)
