# Cointelegraph — Zapi reference > Cointelegraph — RSS feed, main / tag / category **Base URL:** `https://api.zpi.web.id` **Auth:** Send `x-api-key: YOUR_KEY` header on every request. Get a free key at https://zpi.web.id/dashboard/keys. **Response envelope:** `{ content, message, errors }` **Rate limit:** 60 req/min on free tier. **Related:** - Detail page: https://zpi.web.id/api/news/cointelegraph - Endpoint catalog: https://zpi.web.id/category/news - Concise index: https://zpi.web.id/llms.txt - Full reference: https://zpi.web.id/llms-full.txt --- ## Cointelegraph **Category:** news · **Slug:** `cointelegraph` **Detail page:** https://zpi.web.id/api/news/cointelegraph Cointelegraph — RSS feed, main / tag / category **Tags:** news, cointelegraph ### Feed Cointelegraph — RSS feed, main / tag / category - **Method:** `GET` - **Endpoint:** `https://api.zpi.web.id/v1/news:cointelegraph/feed` - **Cache TTL:** 300s **Parameters:** | Name | Type | Location | Required | Description | |------|------|----------|----------|-------------| | `section` | string | query | no | Tag or category slug. Omit for the main feed | | `sectionType` | enum(tag|category) | query | no | Which namespace `section` belongs to. Default tag | | `limit` | number | query | no | Max items, 1-50. Default 20 | **cURL:** ```bash curl "https://api.zpi.web.id/v1/news:cointelegraph/feed?section=bitcoin§ionType=tag&limit=20" \ -H "x-api-key: YOUR_API_KEY" ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zpi.web.id/v1/news:cointelegraph/feed?section=bitcoin§ionType=tag&limit=20", { headers: { "x-api-key": process.env.ZAPI_KEY } }); const data = await res.json(); ``` **Python:** ```python import requests r = requests.get("https://api.zpi.web.id/v1/news:cointelegraph/feed?section=bitcoin§ionType=tag&limit=20", headers={"x-api-key": "YOUR_API_KEY"}) data = r.json() ``` **Example response:** ```json { "ok": true, "count": 20, "items": [ { "link": "https://cointelegraph.com/markets/bitcoin-breaks-200-day-moving-average?utm_source=rss_feed&utm_medium=rss_tag_bitcoin&utm_campaign=rss_partner_inbound", "title": "Bitcoin breaks above 200-day moving average for first time since November", "pubDate": "Thu, 20 Aug 2026 21:03:21 +0000", "summary": "The BTC price reclaimed its 200-day moving average for the first time in nine months as its rally gained momentum after the US Treasury expanded its bond buybacks." }, { "link": "https://cointelegraph.com/markets/bitcoin-surges-after-us-debt-crosses-40t?utm_source=rss_feed&utm_medium=rss_tag_bitcoin&utm_campaign=rss_partner_inbound", "title": "US debt tops $40T stoking debate on what it means for Bitcoin", "pubDate": "Thu, 20 Aug 2026 17:43:58 +0000", "summary": "Analysts say the $40 trillion debt milestone could bolster Bitcoin’s long-term case, even as Treasury yields, dollar strength and liquidity remain key near-term drivers." }, { "link": "https://cointelegraph.com/news/bitcoin-miners-ai-hpc-capex-revenue-2026?utm_source=rss_feed&utm_medium=rss_tag_bitcoin&utm_campaign=rss_partner_inbound", "title": "Bitcoin miners pour billions into AI as capex outpaces revenue 15-to-1", "pubDate": "Thu, 20 Aug 2026 16:12:00 +0000", "summary": "Nine public miners generated $341 million from AI and HPC operations in the first half of 2026 after spending more than $5 billion on capital assets." }, { "link": "https://cointelegraph.com/markets/bitcoin-price-reaches-725k-as-us-issues-economic-d-day-threat-to-iran?utm_source=rss_feed&utm_medium=rss_tag_bitcoin&utm_campaign=rss_partner_inbound", "title": "Bitcoin price reaches $72.5K as US issues ‘Economic D-Day’ threat to Iran", "pubDate": "Thu, 20 Aug 2026 15:40:54 +0000", "summary": "Bitcoin saw new multimonth highs above $72,500 even as US stocks cooled amid US threats of “economic warfare” with Iran." }, { "link": "https://cointelegraph.com/markets/bitcoin-etfs-largest-daily-inflow-since-early-may?utm_source=rss_feed&utm_medium=rss_tag_bitcoin&utm_campaign=rss_partner_inbound", "title": "Bitcoin ETFs draw $517M in largest one-day inflow since early May", "pubDate": "Thu, 20 Aug 2026 11:16:41 +0000", "summary": "Investors have poured more than $1 billion into US spot Bitcoin ETFs this week as BTC neared $72,000 and Ether climbed 19% to about $2,286 on Thursday." }, { "link": "https://cointelegraph.com/markets/crypto-short-liquidations-pass-3b-mark-as-bitcoin-price-nears-72k?utm_source=rss_feed&utm_medium=rss_tag_bitcoin&utm_campaign=rss_partner_inbound", "title": "Crypto short liquidations pass $3B mark as Bitcoin price nears $72K", "pubDate": "Thu, 20 Aug 2026 10:03:04 +0000", "summary": "Bitcoin approached $72,000 in a second day of upside as crypto short liquidations passed $3.1 billion." }, { "link": "https://cointelegraph.com/markets/bitcoin-price-100k-standard-chartered-treasury-buybacks?utm_source=rss_feed&utm_medium=rss_tag_bitcoin&utm_campaign=rss_partner_inbound", "title": "Standard Chartered analyst eyes $100K BTC as US Treasury doubles long-end buybacks", "pubDate": "Wed, 19 Aug 2026 16:00:03 +0000", "summary": "Bitcoin’s rebound toward $69,000 is gaining momentum as Geoff Kendrick points to improving liquidity conditions and a potential cycle bottom." }, { "link": "https://cointelegraph.com/markets/bitcoin-price-hits-11-week-high-as-us-treasury-doubles-debt-buyback-size?utm_source=rss_feed&utm_medium=rss_tag_bitcoin&utm_campaign=rss_partner_inbound", "title": "Bitcoin price hits 11-week high as US Treasury doubles debt buyback size", "pubDate": "Wed, 19 Aug 2026 15:44:09 +0000", "summary": "Bitcoin joined US stocks in a broad rally after the US Treasury announced that it was at least doubling the amount of its debt buyback operations from September." } ], "source": "cointelegraph.com", "section": "bitcoin", "sectionType": "tag" } ``` --- _Generated: 2026-08-21T07:46:24.213Z_