# Prediction Market News Feed

> Prediction Market News Feed 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 recent news articles relevant to prediction markets filtered by a UTC publish-date window.

## Facts

- Endpoint: GET https://api.predictionmarketdata.io/market-news
- 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/prediction-market-news-feed-139ff270
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_0KbHV0ob81D6EAty8kbwQ

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-market-news-feed-139ff270
```

Example prompt: Pull all prediction-market-relevant news published between 2025-06-01T00:00:00Z and 2025-06-07T23:59:59Z so I can see what stories might be moving odds this week.

## When to prefer this

Use this endpoint when you need raw, timestamped news articles relevant to prediction markets within a specific date window — ideal for monitoring breaking events, building context for market analysis, or feeding news into a downstream model. Prefer over the LLM narrative recap sibling when you need structured article data rather than a summarized story.

## Known failure modes

- Missing publishDateFrom or publishDateTo returns a 400 validation error
- Invalid date format causes a 422 unprocessable entity error
- Date range too wide may result in truncated results or timeout
- No news found for the given window returns an empty result set
- Payment failure (x402) blocks access to the endpoint

## How this service works

Recent news relevant to prediction markets within a publish-date window.

## Output

A list of recent news articles relevant to prediction markets that were published within the specified UTC date range, including headlines, content, and publication 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": [
      "publishDateFrom",
      "publishDateTo"
     ],
     "properties": {
      "publishDateTo": {
       "type": "string",
       "description": "Inclusive UTC end time for news publication date."
      },
      "publishDateFrom": {
       "type": "string",
       "description": "Inclusive UTC start time for news publication date."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "news": [
   {
    "url": "https://bitcoinworld.co.in/polymarket-conflict-of-interest-judges-betting/",
    "title": "Polymarket Under Fire: 20% of Dispute Judges Had Stake in Outcomes They Ruled On",
    "newsID": "c42c42e75aa142f3943236f8e7579e6f",
    "snippet": "Polymarket faces scrutiny as 20% of dispute judges had financial stakes in outcomes.",
    "sentiment": "Negative",
    "entityCode": "BTCWRLD",
    "entityName": "BitcoinWorld",
    "contentType": "breaking-news",
    "newsCategory": "prediction-markets",
    "publishDateTime": "2026-06-07T23:50:10Z"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/prediction-market-news-feed-139ff270/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)
