# fold · x402 — RSI/Price Divergence Scanner

> fold · x402 — RSI/Price Divergence Scanner 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 crypto coins where RSI and price action disagree, identifying potential reversal candidates across onchain markets

## Facts

- Endpoint: GET https://x402.fold.computer/divergence
- 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-rsi-price-divergence-scanner-a1221405
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7nD1r4Idew_UMHU050QGc

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-rsi-price-divergence-scanner-a1221405
```

Example prompt: Scan all 636 crypto markets for coins where RSI and price are diverging — potential reversal candidates — and only include ones with at least $500,000 in 24h volume.

## When to prefer this

Use this endpoint when you need machine-readable RSI/price divergence signals across crypto markets for onchain trading agents or automated strategies. Prefer this over generic price feeds when you specifically want pre-computed technical divergence detection rather than raw OHLCV data. The x402 micropayment model makes it suitable for pay-per-call agent workflows without subscriptions.

## Known failure modes

- Payment required (402) if x402 micropayment not attached or fails
- Invalid parameter types (e.g. non-boolean for 'full', non-number for 'minVol') may return 400
- Empty data set if no markets meet the divergence or volume threshold criteria
- Upstream data unavailability may cause stale or partial results

## How this service works

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

## Output

A JSON object with status and a data field containing coins where RSI and price disagree, flagged as potential reversal candidates. Each entry represents a market where the RSI signal contradicts the current price trend, useful for identifying entry or exit opportunities.

## 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": "coins where RSI and price disagree — reversal candidates"
  },
  "status": {
   "type": "string",
   "example": "success"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/fold-x402-rsi-price-divergence-scanner-a1221405/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)
