# Cointelegraph Crypto News API (apitoll.cloud)

> Cointelegraph Crypto News API (apitoll.cloud) is a paid API for AI agents from news.apitoll.cloud, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Fetches real-time cryptocurrency news from Cointelegraph — either the latest feed or full-text search results — across 14 language locales, returning article title, lead, body, author, category, timestamp, and view count.

## Facts

- Endpoint: GET https://news.apitoll.cloud/v1/cointelegraph/news
- 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/news-apitoll-cloud-69c94fbc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_PZiqLhSYrj5dsrm6mvQGv

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 news-apitoll-cloud-69c94fbc
```

Example prompt: Pull the 20 latest Cointelegraph news articles in English about bitcoin ETFs, including the full article text and view counts.

## When to prefer this

Use this endpoint when you need real-time, structured cryptocurrency news from Cointelegraph specifically — especially when you need full article body text, multi-locale support, or full-text search across crypto topics like bitcoin, ethereum, DeFi, or regulation. Prefer this over generic news APIs when Cointelegraph's crypto-native editorial coverage is desired.

## Known failure modes

- Invalid or unsupported locale code returns an error
- limit out of range (outside 1-50) causes a validation error
- Search query with no matching articles returns an empty articles array
- Payment failure (x402) if USDC balance is insufficient
- Upstream Cointelegraph GraphQL API downtime causes timeout or 5xx error

## How this service works

Latest crypto news and breaking headlines, real-time from Cointelegraph. Search any topic (bitcoin, ethereum, DeFi, regulation, market sentiment) or pull the live feed, with full article text across 14 languages. Built for agents tracking crypto markets, tokens, and Web3.

## Output

A JSON object containing the locale, article count, optional search query, source identifier, and an array of articles — each with title, lead, full plain-text body, author, category, post badge, published timestamp, and view count.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "lang": "en",
   "limit": 20,
   "views": true,
   "search": "bitcoin ETF",
   "full_text": true
  }
 }
}
```

## 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",
     "required": [
      "lang"
     ],
     "properties": {
      "lang": {
       "enum": [
        "en",
        "tr",
        "de",
        "es",
        "fr",
        "it",
        "jp",
        "kr",
        "br",
        "cn",
        "ar",
        "in",
        "tw",
        "ru"
       ],
       "type": "string",
       "description": "Locale to fetch news for. Defaults to \"en\"."
      },
      "limit": {
       "type": "integer",
       "maximum": 50,
       "minimum": 1,
       "description": "Number of articles to return (1-50). Defaults to 10."
      },
      "views": {
       "type": "boolean",
       "description": "Include the article view count. Defaults to true."
      },
      "search": {
       "type": "string",
       "description": "Optional full-text search query. When set, returns matching articles instead of the latest feed."
      },
      "full_text": {
       "type": "boolean",
       "description": "Include the full plain-text article body. Defaults to true."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "lang": {
       "type": "string",
       "description": "Locale code (e.g., 'en', 'de', 'es', 'fr', 'jp', 'kr', 'br', 'cn', 'ar', 'in', 'tw', 'ru', 'it', 'tr')"
      },
      "count": {
       "type": "integer",
       "description": "Number of articles in the response array"
      },
      "query": {
       "type": [
        "string",
        "null"
       ],
       "description": "Search query string if ?search= was provided, otherwise null"
      },
      "source": {
       "type": "string",
       "description": "Content source identifier (always 'cointelegraph')"
      },
      "articles": {
       "type": "array",
       "items": {
        "type": "object",
        "required": [
         "id",
         "post_url",
         "postTranslate"
        ],
        "properties": {
         "id": {
      
… (truncated)
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "lang": "en",
  "count": 2,
  "query": null,
  "source": "cointelegraph",
  "articles": [
   {
    "id": "123456",
    "views": 5420,
    "author": {
     "id": "auth123",
     "author_url": "https://cointelegraph.com/authors/john-smith",
     "authorTranslates": [
      {
       "id": "at1",
       "name": "John Smith"
      }
     ]
    },
    "category": {
     "id": "cat456",
     "category_url": "https://cointelegraph.com/tags/bitcoin",
     "categoryTranslates": [
      {
       "id": "ct1",
       "title": "Bitcoin"
      }
     ]
    },
    "post_url": "https://cointelegraph.com/news/bitcoin-article",
    "full_text": "Bitcoin reached a new all-time high today... [full article text]",
    "postBadge": null,
    "postTranslate": {
     "id": "654321",
     "title": "Bitcoin Surges Above $100K",
     "author": {
      "id": "auth123",
      "author_url": "https://cointelegraph.com/authors/john-smith",
      "authorTranslates": [
       {
        "id": "at1",
        "name": "John Smith"
       }
      ],
      "innovationCircleUrl": null
     },
     "avatar": "https://images.cointelegraph.com/banner.jpg",
     "leadText": "BTC reaches new highs amid market momentum.",
     "published": "2026-06-13T14:30:00+00:00",
     "publishedHumanFormat": "2 hours ago"
    }
   },
   {
    "id": "123457",
    "views": 3150,
    "author": null,
    "category": {
     "id": "cat789",
     "category_url": "https://cointelegraph.com/tags/ethereum",
     "categoryTranslates": [
      {
       "id": "ct2",
       "title": "Ethereum"
      }
     ]
    },
    "post_url": "https://cointelegraph.com/news/ethereum-upgrade",
    "postBadge": {
     "id": "badge1",
     "label": "Breaking",
     "postBadgeTranslates": [
      {
       "id": "pb1",
       "title": "Breaking News"
      }
     ]
    },
    "postTranslate": {
     "id": "654322",
     "title": "Ethereum Network Upgrade Complete",
     "author": null,
     "avatar": "https://images.cointelegraph.com/eth.jpg",
     "leadText": "Eth2 upgrade brings efficiency gains.",
     "published": "2026-06-13T12:00:00+00:00",
     "publishedHumanFormat": "4 hours ago"
    }
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/news-apitoll-cloud-69c94fbc/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from news.apitoll.cloud](https://www.zero.xyz/host/news.apitoll.cloud/llms.txt)
