# TokenGuard Crypto News Feed

> TokenGuard Crypto News Feed is a paid API for AI agents from eltociear-tokenguard.hf.space, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Fetches the latest aggregated cryptocurrency and DeFi news headlines from multiple sources

## Facts

- Endpoint: POST https://eltociear-tokenguard.hf.space/news
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tokenguard-crypto-news-feed-16256a69
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_d8av6H8Vw5qbSnwJWR0fe

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 tokenguard-crypto-news-feed-16256a69 -d '<json body>'
```

Example prompt: What's the latest crypto news right now? Pull me the top headlines from TokenGuard — I want titles, sources, and summaries from all the sources it polls.

## When to prefer this

Choose this endpoint when you need aggregated, multi-source cryptocurrency and DeFi news in a single call. Prefer it over manual RSS scraping or single-source news APIs when breadth across up to 6 crypto news sources (e.g. CoinDesk) matters. Ideal for agents that need to brief users on market sentiment, trending topics, or recent events in the crypto space in real time.

## Known failure modes

- Payment not received or insufficient USDC balance — 402 Payment Required
- Upstream news sources unavailable — may return empty news array or reduced source count
- Rate limiting if too many requests — 429 Too Many Requests
- HuggingFace Space cold start latency — slow first response after idle period

## How this service works

Latest crypto news aggregated from major outlets (CoinDesk/Cointelegraph/Decrypt/+3), LLM-ready, keyword/category filterable.

## Output

Returns a JSON object with a list of news articles (each with link, title, source, summary, and published timestamp), total count of articles returned, and number of sources polled (up to 6).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "limit": {
   "type": "integer",
   "description": "Max headlines (1-50, default 10)"
  },
  "query": {
   "type": "string",
   "description": "Keyword filter on title/summary (optional)"
  },
  "category": {
   "type": "string",
   "description": "Category/keyword filter (optional)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "news": [
   {
    "link": "https://...",
    "title": "Bitcoin reclaims $X as ETF inflows surge",
    "source": "CoinDesk",
    "summary": "...",
    "published": "Tue, 24 Jun 2026 ..."
   }
  ],
  "count": 10,
  "sources_polled": 6
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/tokenguard-crypto-news-feed-16256a69/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from eltociear-tokenguard.hf.space](https://www.zero.xyz/host/eltociear-tokenguard.hf.space/llms.txt)
