# fold · x402 Funding Scan

> fold · x402 Funding Scan is a paid API for AI agents from x402.fold.computer, paid per call via x402, $0.05/call, status down (last checked 2026-09-15).

Scans perpetuals markets for extreme funding rates, identifying crowded long and short positions across up to 636 onchain markets.

## Facts

- Endpoint: GET https://x402.fold.computer/funding-scan
- Price: $0.05/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/fold-x402-funding-scan-4bb8662e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__RlLhkDR8I-8K82-serSX

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 fold-x402-funding-scan-4bb8662e
```

Example prompt: Scan all 636 perp markets for the most extreme funding rates right now — I only care about markets with at least $500,000 in 24h volume — show me where longs and shorts are most crowded.

## When to prefer this

Use this endpoint when an onchain agent needs real-time funding rate intelligence across a broad set of perpetuals markets, particularly to identify crowded trades or funding arbitrage opportunities. Prefer this over general market data APIs when you specifically need funding rate extremes and position skew signals rather than price or volume data alone.

## Known failure modes

- Payment not provided or invalid x402 payment header — returns 402 Payment Required
- Invalid parameter types (e.g. non-boolean for 'full') — returns 400 Bad Request
- Volume filter too high eliminating all results — returns empty data set
- Service temporarily unavailable — returns 5xx error
- Rate limiting if called too frequently

## How this service works

Machine-readable market intelligence for onchain agents, served over x402.

## Output

A JSON object with status and data fields, where data contains the most extreme funding rate readings across perpetuals markets — highlighting which markets have the most crowded long and short positions at the time of the call.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "full": {
   "type": "boolean",
   "description": "Scan all 636 markets instead of top 50"
  },
  "minVol": {
   "type": "number",
   "description": "Minimum 24h quote volume filter"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "status",
  "data"
 ],
 "properties": {
  "data": {
   "type": "object",
   "description": "most extreme funding — crowded longs and shorts"
  },
  "status": {
   "type": "string",
   "example": "success"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/fold-x402-funding-scan-4bb8662e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.fold.computer](https://www.zero.xyz/host/x402.fold.computer/llms.txt)
