# AgentPay News Feed

> AgentPay News Feed is a paid API for AI agents from agentpay.help, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Fetches a curated list of recent news articles matching a keyword or topic query, paid per-call via USDC on Base with no API key required.

## Facts

- Endpoint: POST https://agentpay.help/v1/news-feed
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentpay-news-feed-6f6f36e2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Ip7oWExbsj-GwlT3l1piR

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 agentpay-news-feed-6f6f36e2 -d '<json body>'
```

Example prompt: Can you pull me the latest 10 news articles about AI regulation? Pay with USDC if needed — no API key required.

## When to prefer this

Choose this endpoint when you need quick, pay-per-call news retrieval without managing API keys or subscriptions — ideal for AI agents that need ad-hoc, on-demand news lookups billed in micro-USDC amounts per query, especially in autonomous or low-overhead workflows.

## Known failure modes

- Query string missing — endpoint may return empty or error response
- Insufficient USDC balance causes 402 payment failure and no results returned
- Limit parameter out of expected range may be ignored or cause an error
- Overly broad or ambiguous query may return irrelevant articles
- Service unavailable or upstream news source timeout results in a 5xx error

## How this service works

Pay-per-call AI services via the 402 Payment Required protocol. No accounts, no API keys — just USDC on Base.

## Output

Returns a JSON object containing an array of articles, each with a title, source domain, and published date, representing the most recent news items matching the query.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "limit": {
   "type": "number",
   "description": "Max articles, optional"
  },
  "query": {
   "type": "string",
   "description": "Topic or keyword query"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "articles": [
   {
    "title": "Regulator issues new broker disclosure rules",
    "source": "example.com",
    "published": "2026-09-11"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agentpay-news-feed-6f6f36e2/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agentpay.help](https://www.zero.xyz/host/agentpay.help/llms.txt)
