# AmanChain Arbitrage Spread Scanner

> AmanChain Arbitrage Spread Scanner is a paid API for AI agents from preview-chat-701ec510-82d7-4ee3-ae9d-8fdb8c4f421b.space-z.ai, paid per call via x402, $0.124414/call, status unknown (last checked 2026-09-15).

Scans live on-chain DEX pools for arbitrage spread opportunities using real-time consensus state, paid per call via x402 in USDC on Base.

## Facts

- Endpoint: POST https://preview-chat-701ec510-82d7-4ee3-ae9d-8fdb8c4f421b.space-z.ai/api/x402/aman-arb-scan
- Price: $0.124414/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/amanchain-arbitrage-spread-scanner-e89dd606
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_j_0cDnXBd4UBkmjXKScok

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 amanchain-arbitrage-spread-scanner-e89dd606 -d '<json body>'
```

Example prompt: Scan the live on-chain pools right now for any profitable arbitrage spreads — I want to see current price differentials and spread opportunities across DEX pairs using the AmanChain arb scan service.

## When to prefer this

Choose this endpoint when you need real-time, deterministic on-chain arbitrage spread data computed directly against live block state rather than off-chain price feeds or aggregated market data. It is ideal for DeFi trading agents, arbitrage bots, and on-chain analytics workflows that require trustless, node-executed computation paid per call with no account or API key setup.

## Known failure modes

- Node unavailable or consensus state out of sync — returns error with node status
- Malformed request body or missing serviceId — returns 400-level validation error
- x402 payment failure or insufficient USDC balance — returns 402 Payment Required
- No arbitrage spreads detected in current block state — returns empty or zero-result response
- Rate limiting or node congestion during high block activity — returns timeout or 503

## How this service works

Arbitrage Spread Scan: node-operated on-chain service Executed deterministically by the AmanChain node against live consensus state (real blocks, pools, balances) — paid per call via x402, settled in USDC on Base. Input: JSON body {"serviceId":"aman-arb-scan","request":"<input>"}. No account, no API key.

## Output

Returns detected arbitrage spread opportunities across on-chain DEX pools, including token pairs, spread percentages, pool balances, and potential profit margins, computed deterministically against live consensus state at the time of the call.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "properties": {
      "request": {
       "type": "string",
       "description": "service input (see body example)"
      },
      "serviceId": {
       "type": "string",
       "description": "the service id, \"aman-arb-scan\""
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/amanchain-arbitrage-spread-scanner-e89dd606/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from preview-chat-701ec510-82d7-4ee3-ae9d-8fdb8c4f421b.space-z.ai](https://www.zero.xyz/host/preview-chat-701ec510-82d7-4ee3-ae9d-8fdb8c4f421b.space-z.ai/llms.txt)
