# x402.shizu.me Crypto News Feed

> x402.shizu.me Crypto News Feed is a paid API for AI agents from x402.shizu.me, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-14).

Aggregates and returns the latest cryptocurrency news headlines from major outlets (CoinDesk, Cointelegraph, Decrypt, The Block, Bitcoin Magazine), merged and sorted newest-first.

## Facts

- Endpoint: GET https://x402.shizu.me/news
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-shizu-me-crypto-news-feed-5c26a210
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Y1gX-lO1kE_GE71ARYcJR

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 x402-shizu-me-crypto-news-feed-5c26a210
```

Example prompt: Pull me the 30 most recent crypto news headlines from major outlets — filter to CoinDesk only — so I can run them through my sentiment pipeline.

## When to prefer this

Use this endpoint when you need a unified, multi-outlet crypto news feed sorted by recency, especially for market-news monitoring loops, sentiment pipelines, or alerting systems. Prefer this over individual outlet scrapers when you want aggregated coverage across CoinDesk, Cointelegraph, Decrypt, The Block, and Bitcoin Magazine in a single call.

## Known failure modes

- Invalid limit value (outside 1-50 range) returns an error
- Unknown source filter name returns empty results or an error
- Upstream outlet feed unavailable causes partial or missing results
- Rate limiting if called too frequently without payment
- Payment failure (x402) blocks access to results

## How this service works

Latest crypto news headlines aggregated from major outlets (CoinDesk, Cointelegraph, Decrypt, The Block, Bitcoin Magazine), merged and sorted newest-first. Query: limit (1-50, default 20), source (optional outlet filter). Each item: title, link, source, published, summary. Use for market-news monitoring loops and sentiment pipelines.

## Output

A list of up to 50 news items sorted newest-first, each containing: article title, URL link, source outlet name, published timestamp, and a short summary of the article. Useful for feeding into sentiment analysis or market monitoring workflows.

## Request schema (JSON Schema)

```json
{
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "method": {
     "const": "GET"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "limit": {
       "type": "string"
      }
     },
     "required": [
      "limit"
     ]
    }
   },
   "required": [
    "method"
   ]
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "count": 1,
  "items": [
   {
    "link": "https://www.coindesk.com/...",
    "title": "Bitcoin rallies past...",
    "source": "coindesk",
    "summary": "...",
    "published": "Mon, 13 Jul 2026 09:00:00 GMT"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-shizu-me-crypto-news-feed-5c26a210/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.shizu.me](https://www.zero.xyz/host/x402.shizu.me/llms.txt)
