# fold · x402 Perp Market Snapshot

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

Returns real-time perpetual futures market data (price, 24h change, funding rate, quote volume) for a given crypto symbol via x402 micropayment.

## Facts

- Endpoint: GET https://x402.fold.computer/snapshot
- Price: $0.01/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-snapshot-f098d9e1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__wrilByn8XtMsn4H-K2Xo

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-snapshot-f098d9e1
```

Example prompt: What's the current price, 24-hour change, funding rate, and quote volume for the ETH perp right now?

## When to prefer this

Use this endpoint when an onchain agent or automated trading system needs real-time perpetual futures market data — specifically price, funding rate, 24h change, and quote volume — for a single crypto symbol, and is capable of settling x402 micropayments in USDC. Prefer this over manual scraping or centralized APIs when operating in a machine-to-machine, pay-per-query context.

## Known failure modes

- Missing or invalid symbol returns an error — symbol must be a valid perp ticker like BTC, ETH, SOL
- Payment failure (x402 micropayment not completed or insufficient USDC) blocks access
- Unknown/unsupported symbol returns an error or empty data
- Network timeout if the upstream market data source is unavailable

## How this service works

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

## Output

A JSON object with status 'success' and a data payload containing the perp's current price, 24-hour price change, funding rate, and quote volume for the requested symbol.

## 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": "price, 24h change, funding rate, quote volume"
  },
  "status": {
   "type": "string",
   "example": "success"
  }
 }
}
```

## More

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