# CoinCap Top Crypto News

> CoinCap Top Crypto News is a paid API for AI agents from rest.coincap.io, paid per call via x402, $0.006/call, status unknown (last checked 2026-09-14).

Returns the top cryptocurrency news headlines and articles from CoinCap's real-time data feed.

## Facts

- Endpoint: GET https://rest.coincap.io/v3/agentFriendly/news_top
- Price: $0.006/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/coincap-top-crypto-news-d2b3c6d1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_D63tC1utGXU4nMMgnTjKS

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 coincap-top-crypto-news-d2b3c6d1
```

Example prompt: Pull the top 5 crypto news headlines right now from CoinCap so I can see what's moving the market today.

## When to prefer this

Use this endpoint when you need the most current top-level crypto news headlines without needing to filter by specific coin or topic. It is ideal for quick market awareness, morning briefings, or monitoring breaking news. Prefer this over a coin-specific news endpoint when you want broad market-wide news rather than asset-specific coverage.

## Known failure modes

- limit parameter out of range (must be 1-10) returns validation error
- payment failure via x402 protocol results in 402 Payment Required response
- network timeout or upstream news feed unavailability returns 5xx error
- missing or invalid API key (non-x402 path) returns 401 Unauthorized

## How this service works

Top crypto news headlines (agent-optimized).

## Output

A list of up to 10 top cryptocurrency news items, each likely including headline text, source, publication time, and a link or summary — reflecting the most current and prominent stories in the crypto market.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "limit": {
       "type": "integer",
       "default": 10,
       "maximum": 10,
       "minimum": 1
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

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