# fold · x402 – Perp Market Intelligence Reader

> fold · x402 – Perp Market Intelligence Reader 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).

Returns structured market intelligence (structure, indicators, key levels, and funding) for a perpetual futures symbol in a single call, paid via x402.

## Facts

- Endpoint: GET https://x402.fold.computer/read
- 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-perp-market-intelligence-reader-1c6e1446
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_bAehJAMc3s5hsjfNlD_Ar

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-perp-market-intelligence-reader-1c6e1446
```

Example prompt: Pull the latest market intelligence for ETH perps — I need the structure, key price levels, indicators, and funding rate all in one shot.

## When to prefer this

Choose this endpoint when an onchain or autonomous trading agent needs a comprehensive, machine-readable snapshot of a perpetual futures market — including structure, indicators, levels, and funding — in a single paid API call. Ideal when consolidating multiple data fetches into one round-trip matters, and when the agent is capable of executing x402 micropayments (USDC on-chain). Prefer over free/REST alternatives when operating in a trustless, pay-per-use agent context.

## Known failure modes

- Invalid or unsupported symbol returns an error status
- Missing required 'symbol' parameter causes a 400-style error
- Payment failure via x402 results in a 402 response before data is delivered
- Network timeout if upstream market data is unavailable
- Rate limiting or quota exceeded on the x402 facilitator side

## How this service works

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

## Output

A JSON object with a 'status' field ('success') and a 'data' object containing market structure, technical indicators, key price levels, and funding rate data for the requested perpetual futures symbol — all consolidated in a single response.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "symbol"
 ],
 "properties": {
  "symbol": {
   "type": "string",
   "description": "Perp symbol, e.g. BTC, ETH, SOL"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "status",
  "data"
 ],
 "properties": {
  "data": {
   "type": "object",
   "description": "structure + indicators + levels + funding in one call"
  },
  "status": {
   "type": "string",
   "example": "success"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/fold-x402-perp-market-intelligence-reader-1c6e1446/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)
