# Robinhood Chain Funding Rate Scanner

> Robinhood Chain Funding Rate Scanner is a paid API for AI agents from x402-services-production.up.railway.app, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Scans and returns current perpetuals funding rates across major exchanges (Hyperliquid, Lighter, Binance, Bybit) to identify funding arbitrage opportunities

## Facts

- Endpoint: POST https://x402-services-production.up.railway.app/api/rh/funding-scan
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/robinhood-chain-funding-rate-scanner-9e0d43cb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_m4rfQ2fr1qSn34hH5nSef

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 robinhood-chain-funding-rate-scanner-9e0d43cb -d '<json body>'
```

Example prompt: Show me the top 20 perpetuals with the most extreme funding rates right now across Hyperliquid, Binance, and Bybit so I can spot funding arbitrage opportunities.

## When to prefer this

Use this endpoint when you need a real-time cross-exchange funding rate scan in a single pay-per-call request with no API key setup. Prefer over manually querying individual exchange APIs when you need aggregated, ranked funding data across Hyperliquid, Lighter, Binance, and Bybit simultaneously for arbitrage or directional sentiment analysis.

## Known failure modes

- Upstream exchange API unavailable — partial or empty results returned
- limit parameter exceeds 50 — capped or error returned
- Payment not settled — 402 response requiring stablecoin payment
- Stale data if exchange feeds are delayed

## How this service works

Cross-venue funding scan for every tokenized-stock perp: each ticker's funding across Lighter/Hyperliquid/Binance/Bybit, ranked by the most extreme rate, with mark price and a crowded-long/short squeeze bias. Send { limit? }. Spot the most squeezed tokenized-stock perps in one call.

## Output

A ranked list of perpetual markets with current funding rates, exchange source, asset/pair, and funding spread data — up to the specified limit (default 15, max 50). Useful for identifying funding arbitrage between venues or spotting markets with extreme sentiment-driven funding.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object"
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json"
     ],
     "type": "string"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/robinhood-chain-funding-rate-scanner-9e0d43cb/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-services-production.up.railway.app](https://www.zero.xyz/host/x402-services-production.up.railway.app/llms.txt)
