# ArbiPulse Live Arbitrage Scanner

> ArbiPulse Live Arbitrage Scanner is a paid API for AI agents from arbipulse.theaslangroupllc.com, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-14).

Returns top live arbitrage opportunities ranked by net expected value across DeFi, DEX, perps, ETF, commodity, and sports markets.

## Facts

- Endpoint: GET https://arbipulse.theaslangroupllc.com/api/scanner
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/arbipulse-live-arbitrage-scanner-18bdc3c2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_AeJhxf3qk86paNeSn06MD

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 arbipulse-live-arbitrage-scanner-18bdc3c2
```

Example prompt: Show me the top live arbitrage opportunities right now ranked by net expected value — include DeFi, DEX, perps, ETFs, commodities, and sports, so I can see where the best edge is across all markets.

## When to prefer this

Use this endpoint when you need a broad, cross-market arbitrage sweep ranked by net expected value in a single call, rather than querying individual specialized endpoints (e.g., the perps-only or sports-only scanners). Ideal as the first step in an autonomous arbitrage agent workflow to identify the highest-EV opportunity before drilling into execution details.

## Known failure modes

- No opportunities found above minimum EV threshold — empty result set returned
- Market data temporarily unavailable — stale or missing quotes from one or more venues
- Rate limiting if called too frequently — 402/429 response
- Payment failure — x402 USDC micropayment not processed, request rejected
- Specific market category temporarily offline — partial results with missing asset class

## How this service works

Top live arbitrage opportunities across perps funding, DEX/CEX spot, ETF, commodity and sports, ranked by net expected value. For autonomous arbitrage agents.

## Output

A ranked list of live arbitrage opportunities across DeFi, DEX, perpetuals, ETF, commodity, and sports markets, each scored by net expected value, with relevant venue, asset pair, spread, and opportunity type details for autonomous agent consumption.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "chain": {
       "type": "string",
       "description": "ethereum | base | arbitrum | optimism | all (default: all)"
      },
      "category": {
       "type": "string",
       "description": "all | dex | perps | sports | etf | commodity (default: all)"
      },
      "min_profit_usd": {
       "type": "string",
       "description": "minimum net profit per $1,000 stake, e.g. 5"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "errors": {
     "type": "object",
     "description": "Documented error responses, keyed by HTTP status code",
     "additionalProperties": {
      "type": "object",
      "required": [
       "description"
      ],
      "properties": {
       "example": {
        "type": "object"
       },
       "description": {
        "type": "string"
       }
      }
     }
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "scan_timestamp": "2026-06-06T12:00:00Z",
  "category_summary": {
   "dex": {
    "count": 2,
    "best_spread_pct": 0.35
   },
   "perps": {
    "count": 3,
    "best_annual_pct": 62.3
   },
   "sports": {
    "note": "Surebet scanner requires /api/sports — real-time odds not included in unified scan"
   }
  },
  "market_conditions": "Bullish crypto sentiment driving elevated positive funding on most venues. CEX spot arb thin due to market-maker competition.",
  "pulse_suggestions": [],
  "top_opportunities": [
   {
    "rank": 1,
    "title": "BTC Delta-Neutral Carry: Hyperliquid Long + Binance Short",
    "category": "perps",
    "complexity": "medium",
    "risk_level": "medium",
    "description": "Hyperliquid BTC funding is -0.12%/8h (longs paid). Open equal short on Binance at +0.045%/8h for 62% annualized delta-neutral yield.",
    "execution_speed": "minutes",
    "capital_required": "$5,000 minimum",
    "execution_endpoint": "/api/perps?asset=BTC&platform=all&min_apy=20",
    "live_data_snapshot": {
     "hl_funding_8h": -0.00122,
     "binance_funding_8h": 0.00045,
     "net_spread_annual_pct": 62.3
    },
    "estimated_profit_pct_annual": 62.3,
    "estimated_profit_per_1k_usd": 623
   }
  ],
  "total_opportunities": 12
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/arbipulse-live-arbitrage-scanner-18bdc3c2/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from arbipulse.theaslangroupllc.com](https://www.zero.xyz/host/arbipulse.theaslangroupllc.com/llms.txt)
