# fold · x402 — /setups Market Intelligence

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

Returns actionable long/short trade setup structures across crypto markets, filterable by volume and market coverage scope

## Facts

- Endpoint: GET https://x402.fold.computer/setups
- Price: $0.1/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-setups-market-intelligence-55f71555
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_vvpclx4m460SGrdIcR8ux

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-setups-market-intelligence-55f71555
```

Example prompt: Scan all 636 crypto markets on fold and give me the current long and short setups, but only for markets with at least $500,000 in 24-hour volume.

## When to prefer this

Choose this endpoint when you need structured, machine-readable long/short trade setups across a broad crypto market universe, especially for onchain agent workflows that require programmatic signal ingestion. Prefer the 'full=true' flag when you need comprehensive coverage beyond the top 50 markets. Use 'minVol' to filter out illiquid markets. This is distinct from price feeds or order book data — it provides higher-level directional trade structures.

## 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
- Service temporarily unavailable — returns 5xx error
- No markets matching the minVol filter — returns empty data object with success status

## 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 actionable long and short trade structures across the scanned markets, structured for machine consumption by onchain trading agents.

## 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": "actionable long/short structures across the whole market"
  },
  "status": {
   "type": "string",
   "example": "success"
  }
 }
}
```

## More

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