# fold · x402 — Perpetuals Support/Resistance Levels

> fold · x402 — Perpetuals Support/Resistance Levels 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 nearest support/resistance levels and price range top/bottom for a given crypto perpetuals symbol

## Facts

- Endpoint: GET https://x402.fold.computer/levels
- 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-perpetuals-support-resistance-levels-dcddc6d9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_mAJ3-ECTmmSAENAH-0trv

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-perpetuals-support-resistance-levels-dcddc6d9
```

Example prompt: What are the nearest support and resistance levels and the range top and bottom for BTC perps right now?

## When to prefer this

Use this endpoint when an onchain or AI agent needs machine-readable technical price levels (support, resistance, range top/bottom) for crypto perpetual markets, especially when paying per-call via x402 micropayments. Prefer this over general-purpose price feeds when you need structured market structure intelligence rather than raw price ticks.

## Known failure modes

- Missing or invalid symbol returns an error (e.g. unknown ticker)
- Payment not provided or insufficient USDC balance causes 402 Payment Required response
- Network or upstream data unavailability may result in 5xx errors
- Symbol for a non-supported perp market returns empty or error data

## How this service works

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

## Output

A JSON object with a 'status' field (e.g. 'success') and a 'data' object containing the nearest support level, resistance level, range top, and range bottom for the requested perpetuals symbol — structured for direct consumption by onchain agents.

## 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": "nearest support/resistance, range top/bottom"
  },
  "status": {
   "type": "string",
   "example": "success"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/fold-x402-perpetuals-support-resistance-levels-dcddc6d9/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)
