# PerpSignals Funding Rate Scanner

> PerpSignals Funding Rate Scanner is a paid API for AI agents from perpsignals.use.x402atlas.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Returns the top crypto perpetual-futures funding rates ranked across ~100 Binance perp markets, including rate, 8-hour percentage, direction (who pays whom), mark price, and next funding time.

## Facts

- Endpoint: GET https://perpsignals.use.x402atlas.com/funding-rates
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/perpsignals-funding-rate-scanner-cec74937
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_1ep4Npk9_6K-ziCE9RRr4

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 perpsignals-funding-rate-scanner-cec74937
```

Example prompt: Show me the top funding rates across all Binance perpetual futures right now — I want to see the rate, 8-hour percentage, which side is paying, the mark price, and when the next funding settlement happens.

## When to prefer this

Use this endpoint when you need a ranked, cross-market view of funding rates across all major Binance perpetual futures in a single call. Ideal for funding rate arbitrage strategies, detecting crowded positioning, or monitoring which markets have extreme funding. Prefer this over manual per-symbol lookups or exchange APIs that require symbol-by-symbol queries.

## Known failure modes

- Binance data source temporarily unavailable — stale or empty response
- Rate limit exceeded on upstream data feed — 429 or service-unavailable response
- Payment not processed — 402 response requiring valid x402 USDC payment
- Network timeout fetching live market data — slow or no response

## How this service works

Crypto perpetual-futures funding-rate scanner — the top funding rates ranked across ~100 Binance perp markets (rate, 8h %, who-pays-who direction, mark price, next funding time). Spot funding arbitrage and crowded positioning in one call.

## Output

A ranked list of ~100 Binance perpetual futures markets with each market's current funding rate, 8-hour funding percentage, direction indicating whether longs or shorts are paying, current mark price, and the timestamp of the next funding event.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "count": 1,
  "rates": [
   {
    "symbol": "TAIKOUSDT",
    "direction": "shorts pay longs",
    "mark_price": 0.1445,
    "funding_rate": -2,
    "funding_rate_8h": "-2.0000%",
    "next_funding_at": "2026-07-01T16:00:00Z"
   }
  ],
  "scanned": 103,
  "queried_at": "2026-07-01T12:00:00Z"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/perpsignals-funding-rate-scanner-cec74937/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from perpsignals.use.x402atlas.com](https://www.zero.xyz/host/perpsignals.use.x402atlas.com/llms.txt)
