# DataForAgents News Pulse Alpha

> DataForAgents News Pulse Alpha is a paid API for AI agents from dataforagents.net, paid per call via x402, $0.04/call, status unknown (last checked 2026-09-14).

Returns a real-time structured JSON snapshot of top news events across finance, geopolitics, tech/AI, or sports, refreshed every 15 minutes, paid per-request via x402 USDC.

## Facts

- Endpoint: GET https://dataforagents.net/v1/news/pulse/alpha
- Price: $0.04/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/dataforagents-news-pulse-alpha-88fd4ed5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_RG8KBqq5IE_SUpnnwNO0-

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 dataforagents-news-pulse-alpha-88fd4ed5
```

Example prompt: Pull the latest 15-minute news pulse for tech and AI right now and give me the full event list — pay the per-request fee automatically.

## When to prefer this

Choose this endpoint when you need structured, categorized news event data refreshed at 15-minute intervals without any API key setup — ideal for autonomous agents that can pay per-request via x402 USDC. Prefer it over subscription news APIs when you want pay-as-you-go access, over web scraping when you need clean JSON, and over general search when you want pre-aggregated pulse snapshots in specific verticals (finance, geopolitics, tech/AI, sports).

## Known failure modes

- Payment not sent or insufficient USDC — x402 payment required error
- Invalid category enum value — request rejected with schema validation error
- Service unavailable or data not yet harvested for the current window — ready: false returned
- Network timeout during 15-minute window boundary transitions
- Rate limiting or facilitator-side payment processing delay

## How this service works

DataForAgents — Alpha Pulse (15m). Dynamic price: ~80% off when you trigger harvest for an empty calendar block; full price on cache hits.

## Output

A JSON object containing a pulse_id, window_start and window_end timestamps (15-minute interval), the requested category, an events array with news items, events_count, a status field ('success'), a pricing_tier ('cache' or live), a harvested flag, and a ready boolean indicating data availability.

## 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": {
      "category": {
       "enum": [
        "finance_macro",
        "geopolitics",
        "tech_ai",
        "sports"
       ],
       "type": "string",
       "description": "Optional focus category: finance_macro | geopolitics | tech_ai | sports"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ready": true,
  "events": [],
  "status": "success",
  "category": "tech_ai",
  "interval": "15m",
  "pulse_id": "example-pulse",
  "harvested": false,
  "window_end": "2026-07-15T22:15:00.000Z",
  "events_count": 24,
  "pricing_tier": "cache",
  "window_start": "2026-07-15T22:00:00.000Z"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/dataforagents-news-pulse-alpha-88fd4ed5/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from dataforagents.net](https://www.zero.xyz/host/dataforagents.net/llms.txt)
