# Financial Data x402 – Prediction Market Event

> Financial Data x402 – Prediction Market Event is a paid API for AI agents from x402financialdata.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Fetches live prediction market event data (outcomes, probabilities, volume) for a given slug from sources like Polymarket, paid via USDC over the x402 protocol.

## Facts

- Endpoint: GET https://x402financialdata.com/prediction-market-event/%7Bslug%7D
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/financial-data-x402-prediction-market-event-30d30b98
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_YxEaSgllDHMwoe8noOyMj

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 financial-data-x402-prediction-market-event-30d30b98
```

Example prompt: What are the current Polymarket odds and trading volume for the 'next-prime-minister-of-ethiopia' event? I want to see all the outcomes and their probabilities.

## When to prefer this

Choose this endpoint when you need real-time prediction market probability and volume data for a specific named event (identified by its slug), paid per-call without subscriptions or API keys. It is ideal for agents that need to programmatically ingest market sentiment from Polymarket-style sources on a per-query basis using USDC micropayments over x402.

## Known failure modes

- Invalid or unknown slug returns a 404 or empty response
- Payment failure if USDC balance is insufficient or x402 handshake fails
- Event may have resolved, returning a non-active status with stale probabilities
- Slug format mismatch (e.g. URL encoding issues with special characters)
- Upstream Polymarket data unavailable or delayed

## How this service works

Pay-per-call stock, macro, on-chain, and crypto data over the x402 protocol. USDC on Base or Solana, no API keys, no subscriptions.

## Output

A JSON object containing the event's title, source (e.g. Polymarket), status (active/resolved), a list of outcomes each with a label, market ID, USD volume, and probability, plus the event's close date and total outcome count.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "slug": "next-prime-minister-of-ethiopia",
  "title": "Next Prime Minister of Ethiopia?",
  "source": "polymarket",
  "status": "active",
  "outcomes": [
   {
    "label": "Will Abiy Ahmed be the next Prime Minister of Ethiopia?",
    "market_id": "will-abiy-ahmed-be-the-next-prime-minister-of-ethiopia",
    "volume_usd": 123390.75,
    "probability": 0.9395
   },
   {
    "label": "Will someone else be the next Prime Minister of Ethiopia?",
    "market_id": "will-someone-else-be-the-next-prime-minister-of-ethiopia",
    "volume_usd": 41200.5,
    "probability": 0.03
   }
  ],
  "close_date": "2026-12-31T12:00:00Z",
  "outcome_count": 2
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/financial-data-x402-prediction-market-event-30d30b98/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402financialdata.com](https://www.zero.xyz/host/x402financialdata.com/llms.txt)
