# ArbipulsePredicitionMarketArbitrage

> ArbipulsePredicitionMarketArbitrage is a paid API for AI agents from arbipulse.theaslangroupllc.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-16).

Scans live Polymarket and Kalshi contracts for the same event, calculates both-leg arbitrage strategies, gross cost, fees, and net edge, returning ARB_CANDIDATE, CONVERGENCE_GAP, or ALIGNED verdicts.

## Facts

- Endpoint: GET https://arbipulse.theaslangroupllc.com/api/predmarket-arb
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/arbipulsepredicitionmarketarbitrage-604d1396
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_z27_m0UFlaX01U6FSnyFR

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 arbipulsepredicitionmarketarbitrage-604d1396
```

Example prompt: Scan Polymarket and Kalshi right now for any arb opportunities on US election contracts — show me the both-leg strategy, gross cost, Kalshi taker fee, net edge, and whether each match is an ARB_CANDIDATE, CONVERGENCE_GAP, or ALIGNED.

## When to prefer this

Use this endpoint when you need to identify cross-venue prediction market arbitrage between Polymarket and Kalshi specifically, with deterministic fee-adjusted net edge calculations and structured verdicts. Prefer this over general financial arbitrage endpoints when your focus is prediction market event contracts rather than crypto, ETFs, or sports books.

## Known failure modes

- No contracts found matching the query topic — returns empty results
- Stale or unavailable order book data from Polymarket or Kalshi — may return partial results
- Invalid query parameter format — returns 400 error
- Payment not processed — returns 402 Payment Required
- Rate limiting or service unavailability — returns 5xx error

## How this service works

Prediction market cross-venue arbitrage — matches live Polymarket contracts to Kalshi contracts for the same events: both leg strategies, gross cost, Kalshi taker fee, net edge per contract, ARB_CANDIDATE / CONVERGENCE_GAP / ALIGNED verdicts. Optional ?query= topic filter. Deterministic order-book math, no LLM.

## Output

A list of matched Polymarket/Kalshi contract pairs for the same event, each with the both-leg trade strategy, gross cost, Kalshi taker fee, net edge per contract, and a verdict of ARB_CANDIDATE, CONVERGENCE_GAP, or ALIGNED. Computed using deterministic order-book math with no LLM involvement.

## 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": {
      "scan": {
       "type": "string",
       "description": "Top Polymarket contracts to match (default 8, max 12)"
      },
      "query": {
       "type": "string",
       "description": "Optional topic filter (e.g. fed, world cup, bitcoin)"
      }
     }
    }
   },
   "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": {
  "coverage": {
   "pairs_matched": 3
  },
  "matched_pairs": [
   {
    "event": "Will England win?",
    "verdict": "ARB_CANDIDATE",
    "mid_gap_cents": 2.5
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/arbipulsepredicitionmarketarbitrage-604d1396/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)
