# Prediction Market News Feed

> Prediction Market News Feed is a paid API for AI agents from d2ngmd5yvdfkqu.cloudfront.net, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Returns recent news articles relevant to prediction markets within a specified UTC publish-date window.

## Facts

- Endpoint: GET https://d2ngmd5yvdfkqu.cloudfront.net/market-news
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/prediction-market-news-feed-36e1ab24
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_oNeBUnr8WqeHvb5Vpxuc0

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-36e1ab24
```

Example prompt: Pull me all the recent news relevant to prediction markets published between 2025-07-01T00:00:00Z and 2025-07-14T23:59:59Z so I can see what stories might be influencing market outcomes.

## When to prefer this

Use this endpoint when you need a curated feed of news specifically filtered for prediction market relevance within a precise UTC time window. Prefer this over generic news APIs when the goal is to inform prediction market analysis, identify market-moving events, or monitor news that could shift outcome probabilities on prediction platforms.

## Known failure modes

- Missing publishDateFrom or publishDateTo returns a 400 bad request
- Invalid date format causes a parsing error
- Date range too wide may return a large or truncated payload
- No news found in the requested window returns empty results
- Payment not provided or insufficient USDC balance returns 402 Payment Required
- CloudFront origin timeout may return 504 if upstream is slow

## How this service works

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

## Output

A collection of news articles or headlines relevant to prediction markets, filtered to those published within the requested UTC date window. Each item likely includes title, publication date, and content or summary relevant to market events.

## 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"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/prediction-market-news-feed-36e1ab24/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from d2ngmd5yvdfkqu.cloudfront.net](https://www.zero.xyz/host/d2ngmd5yvdfkqu.cloudfront.net/llms.txt)
