# CryptoIntel News Feed

> CryptoIntel News Feed is a paid API for AI agents from cryptointel-production.up.railway.app, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Fetches the latest cryptocurrency headlines aggregated from major outlets like CoinDesk and Cointelegraph as clean JSON

## Facts

- Endpoint: GET https://cryptointel-production.up.railway.app/news-crypto
- 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/cryptointel-news-feed-27965301
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_di6u2rzAiieARFMP5Cffs

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 cryptointel-news-feed-27965301
```

Example prompt: Can you pull the latest 10 crypto headlines from CryptoIntel — I want to see what CoinDesk and Cointelegraph are covering right now?

## When to prefer this

Use this endpoint when you need a quick, no-scraping-required feed of current crypto news headlines from reputable outlets in clean JSON format. Ideal for agents building crypto dashboards, monitoring market sentiment, or summarizing the day's top stories. Prefer this over raw web scraping when you want structured, pre-aggregated content from CoinDesk and Cointelegraph specifically.

## Known failure modes

- Payment failure — x402 payment of $0.02 USDC not processed, returns 402
- Upstream aggregation failure — source outlets (CoinDesk, Cointelegraph) temporarily unavailable
- Invalid limit parameter — non-numeric value passed to limit query param
- Service unavailability — Railway deployment down, returns 5xx

## How this service works

Latest crypto headlines aggregated from major outlets (CoinDesk, Cointelegraph), clean JSON, no scraping required

## Output

Returns a JSON object with an 'ok' boolean, a 'data' object containing aggregated crypto news headlines from major outlets (CoinDesk, Cointelegraph), and a 'fee_paid' string indicating the $0.02 USDC charge. Articles include headline text, source, and publication metadata.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "limit": 10
  }
 }
}
```

## 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": "number"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "ok": {
       "type": "boolean"
      },
      "data": {
       "type": "object"
      },
      "fee_paid": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/cryptointel-news-feed-27965301/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from cryptointel-production.up.railway.app](https://www.zero.xyz/host/cryptointel-production.up.railway.app/llms.txt)
