# x402-factory Soccer Prediction Markets Board

> x402-factory Soccer Prediction Markets Board is a paid API for AI agents from x402-factory.com, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-15).

Returns all active soccer prediction markets with live blended probabilities, 24h volume, resolution dates, and drill-down slugs in a single call.

## Facts

- Endpoint: GET https://x402-factory.com/v1/board/sports-soccer
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-factory-soccer-prediction-markets-board-e33c29ee
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_5aAzHukbgjarIbPkAEPjJ

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 x402-factory-soccer-prediction-markets-board-e33c29ee
```

Example prompt: Pull up the top 20 active soccer prediction markets right now — I want to see the live probabilities, 24-hour volume, and resolution dates for each one at a glance.

## When to prefer this

Choose this endpoint when you need a comprehensive, single-call snapshot of all active soccer prediction markets sorted by volume — ideal for dashboards, monitoring agents, or any workflow that needs the full soccer market board rather than a single market's detail. Prefer over individual market lookups when you want bulk state at a glance.

## Known failure modes

- Invalid limit parameter (outside 1–50 range) returns a 400 error
- Payment not attached or insufficient USDC returns a 402 Payment Required
- Service unavailable or upstream data lag may return 503 or stale probabilities
- Empty markets array if no active soccer markets exist at query time

## How this service works

All active soccer markets with live probabilities in one call — One-call board of the most active soccer prediction markets: top markets by volume with blended live probabilities, resolution dates, and per-market slugs for drill-down. The bulk read for agents tracking the state of soccer at a glance.

## Output

A JSON object containing an array of active soccer prediction markets, each with a unique slug, a natural-language question, a blended live probability (0–1), 24-hour USD volume, and a resolution date. Also includes a category field and a meta object with pagination or freshness metadata.

## 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",
     "required": [],
     "properties": {
      "limit": {
       "type": "integer",
       "default": 20,
       "maximum": 50,
       "minimum": 1
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "data",
      "meta"
     ],
     "properties": {
      "data": {
       "type": "object",
       "required": [
        "category",
        "markets"
       ],
       "properties": {
        "markets": {
         "type": "array",
         "items": {
          "type": "object",
          "required": [
           "slug",
           "question",
           "probability",
           "volume_24h_usd",
           "resolution_date"
          ],
          "properties": {
           "slug": {
            "type": "string"
           },
           "question": {
            "type": "string"
           },
           "probability": {
            "type": "number",
            "maximum": 1,
            "minimum": 0
           },
           "volume_24h_usd": {
            "type": "number"
           },
           "resolution_date": {
            "type": "string"
           }
          },
          "additionalProperties": false
         }
        },
        "category": {
         "type": "string"
        }
       },
       "additionalProperties": false
      },
      "meta": {
       "type": "object"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {
   "markets": [
    {
     "slug": "european-team-wins-world-cup-2026-07",
     "question": "Will a European team win the 2026 World Cup final?",
     "probability": 0.5463,
     "volume_24h_usd": 799861.22,
     "resolution_date": "2026-07-19"
    }
   ],
   "category": "sports-soccer"
  },
  "meta": {
   "docs": "https://x402-factory.com/docs/probability.board.sports-soccer",
   "sources": [
    "kalshi",
    "polymarket"
   ],
   "version": "1.0.0",
   "endpoint": "/v1/board/sports-soccer",
   "data_mode": "live",
   "freshness": "realtime",
   "request_id": "req_00000000",
   "generated_at": "2026-08-21T03:58:58.081Z"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-factory-soccer-prediction-markets-board-e33c29ee/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-factory.com](https://www.zero.xyz/host/x402-factory.com/llms.txt)
