# Prediction Event Cross-Venue Fusion

> Prediction Event Cross-Venue Fusion is a paid API for AI agents from payai.agentstools.dev, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Matches the same prediction market event across Polymarket, Manifold, and Metaculus, returning each venue's implied probability, a weighted consensus, and a divergence signal indicating disagreement between venues.

## Facts

- Endpoint: GET https://payai.agentstools.dev/prediction/event
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/prediction-event-cross-venue-fusion-af5377d1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_THQfwOZbWYTDSUz0tEYJO

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 prediction-event-cross-venue-fusion-af5377d1
```

Example prompt: Search for the event 'Will the US enter a recession in 2025?' across prediction markets and give me each venue's implied probability, the weighted consensus, and tell me how much the venues disagree with each other.

## When to prefer this

Use this endpoint when you need a multi-venue consensus probability for a specific prediction market event, especially when you want to detect disagreement between venues or get a money-weighted aggregate forecast rather than relying on a single prediction market. Prefer this over querying Polymarket or Manifold individually when cross-venue comparison or divergence detection is the goal.

## Known failure modes

- Event query too ambiguous to match any market across venues — returns no results or low-confidence matches
- Venue-specific market unavailable or offline — partial results with missing venue probabilities
- Provided market_id does not correspond to a known event on the specified venue — lookup failure
- No cross-venue match found within resolve-date proximity — empty fusion result
- Rate limit or payment failure — 402 or 429 response

## How this service works

Cross-venue event fusion: match the SAME event across prediction venues (deterministic fuzzy title match + resolve-date proximity) and return each venue's implied probability, a money-type-weighted consensus, and a forecast-divergence signal (venue disagreement, not a tradeable arbitrage).

## Output

Returns a structured object containing each venue's (Polymarket, Manifold, Metaculus) implied probability for the matched event, a money-type-weighted consensus probability across venues, and a forecast-divergence signal quantifying how much the venues disagree — explicitly not a tradeable arbitrage signal.

## 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",
     "required": [],
     "properties": {
      "query": {
       "type": "string",
       "description": "The event to fuse across venues (free text)"
      },
      "venue": {
       "enum": [
        "polymarket",
        "manifold",
        "metaculus"
       ],
       "type": "string",
       "description": "Optional venue key for market_id"
      },
      "market_id": {
       "type": "string",
       "description": "Optional venue market id (anchor)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/prediction-event-cross-venue-fusion-af5377d1/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from payai.agentstools.dev](https://www.zero.xyz/host/payai.agentstools.dev/llms.txt)
