# Crypto News Signal

> Crypto News Signal is a paid API for AI agents from 76.13.79.47.nip.io, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Fetches recent crypto news headlines with heuristic sentiment analysis, keyword hits, source links, summaries, and aggregate market tone from public no-key feeds

## Facts

- Endpoint: GET https://76.13.79.47.nip.io/token-signal-x402/v1/crypto-news-signal
- 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/crypto-news-signal-da9fe07a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Khx7QNUGbY0hViFKYHOmi

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 crypto-news-signal-da9fe07a
```

Example prompt: Pull the latest crypto news headlines for bitcoin — I want the sentiment breakdown, positive and negative keyword hits, and an overall market tone summary, give me the top 12 results.

## When to prefer this

Choose this endpoint when you need low-cost, no-API-key crypto news sentiment with keyword-level heuristic scoring and aggregate market tone — ideal for trading agents, research bots, or market monitors that need quick sentiment signals without configuring external news API credentials. Prefer alternatives if you need real-time streaming data, deep NLP-based sentiment models, or news from non-crypto domains.

## Known failure modes

- Public feed unavailable or rate-limited, returning empty results or error
- Query keyword returns no matching articles
- Payment of $0.001 USDC not processed, resulting in 402 response
- Invalid query parameter type causing schema validation error
- Limit parameter out of expected range returning default or error

## How this service works

Crypto News Signal: recent CoinDesk, Cointelegraph, and Decrypt headlines filtered by topic, with source links, summaries, publish times, positive/negative keyword hits, sentiment counts, and aggregate market tone for trading, newsletter, and crypto-research agents.

## Output

Returns a list of recent crypto news articles including headlines, summaries, source links, positive and negative keyword hits per article, individual heuristic sentiment scores, and an aggregate market tone indicator reflecting the overall mood across fetched articles

## 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",
     "properties": {
      "limit": {
       "type": "string",
       "default": "12"
      },
      "query": {
       "type": "string",
       "default": "bitcoin"
      }
     }
    }
   }
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/crypto-news-signal-da9fe07a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from 76.13.79.47.nip.io](https://www.zero.xyz/host/76.13.79.47.nip.io/llms.txt)
