# Lukka Prediction Markets PMCS Stats

> Lukka Prediction Markets PMCS Stats is a paid API for AI agents from api.predictionmarketdata.io, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Returns aggregated statistics on prediction market contracts across major exchanges, including category breakdowns and contract counts by exchange.

## Facts

- Endpoint: GET https://api.predictionmarketdata.io/prediction-markets/pmcs-stats
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/lukka-prediction-markets-pmcs-stats-9c083bc1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_YEW_tHzR9UkZKc8nSFBR4

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 lukka-prediction-markets-pmcs-stats-9c083bc1
```

Example prompt: Pull up the latest prediction market stats from Lukka — I want to see how many contracts are active across each category like sports, and how they break down by exchange like Kalshi and Polymarket.

## When to prefer this

Use this endpoint when you need a high-level statistical snapshot of prediction market contract volumes broken down by category and exchange. Prefer this over individual market lookup endpoints when the goal is dashboard-style aggregation or comparative analysis across platforms like Kalshi and Polymarket.

## Known failure modes

- Invalid or malformed properties filter returns 400 error
- Endpoint temporarily unavailable returns 503
- Payment not processed (x402 payment required) returns 402
- Empty or stale data if markets have not updated recently

## How this service works

Live PMCS counts by hierarchy and exchange.

## Output

A JSON object containing pmcs_stats with an array of category codes (e.g. SPT for sports), each with a total contract count and a breakdown of contract counts per exchange entity (e.g. KALSHI, POLYMARK), plus a last_updated ISO timestamp.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "pmcs_stats": {
   "category_codes": [
    {
     "code": "SPT",
     "count": 16821,
     "entityCodes": [
      {
       "code": "KALSHI",
       "count": 11909
      },
      {
       "code": "POLYMARK",
       "count": 3714
      }
     ]
    }
   ]
  },
  "last_updated": "2026-06-08T20:13:30.068517+00:00"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/lukka-prediction-markets-pmcs-stats-9c083bc1/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.predictionmarketdata.io](https://www.zero.xyz/host/api.predictionmarketdata.io/llms.txt)
