# Syra Arbitrage Scanner

> Syra Arbitrage Scanner is a paid API for AI agents from api.syraa.fun, paid per call via x402, $0.04/call, status unknown (last checked 2026-09-15).

Scans top CMC assets for cross-exchange arbitrage opportunities, ranking by gross spread using USDT venues

## Facts

- Endpoint: GET https://api.syraa.fun/arbitrage
- Price: $0.04/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/syra-arbitrage-scanner-1c68f229
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__VzesfIp9Yb7RyQaIeP_f

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 syra-arbitrage-scanner-1c68f229
```

Example prompt: Scan the top 15 CoinMarketCap crypto assets for arbitrage opportunities and show me which ones have the biggest price spreads across USDT exchanges right now.

## When to prefer this

Use this endpoint when you need real-time cross-exchange arbitrage scanning for the top CMC assets ranked by spread. Ideal for automated trading bots or agents looking to identify the most profitable arbitrage windows on USDT-paired markets. Prefer over generic market data endpoints when you specifically need spread-ranked arbitrage signals rather than raw price data.

## Known failure modes

- Payment not completed — returns 402 if USDC payment not received
- limit exceeds max of 25 — validation error
- No arbitrage opportunities found for the scanned assets
- Exchange data unavailable — stale or missing venue data
- Rate limiting if too many requests in short window

## How this service works

Machine money for agents on Solana: live x402 pay-per-call APIs, MCP tools, typed SDK. Earn · Treasury · Invest · Spend · Grow.

## Output

Returns a JSON object with ok and paid status flags, along with a ranked list of top non-stable CMC assets ordered by gross arbitrage spread across USDT venues, showing price differentials exploitable across exchanges.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "queryParams": {
      "limit": {
       "type": "integer",
       "required": false,
       "description": "How many top (non-stable) CMC assets to scan; gross spread ranking uses USDT venues only (default 10, max 25)."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "paid": true
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/syra-arbitrage-scanner-1c68f229/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.syraa.fun](https://www.zero.xyz/host/api.syraa.fun/llms.txt)
