How it works APIs Dashboard Fund Early Access Contact Docs Fund →
Bitcoin News API • Live on Bitcoin mainnet

Get Bitcoin headlines with dedupe and sentiment.

Query recent Bitcoin headlines from multiple publishers in one call. ArkAPI merges the feeds, removes cross-feed duplicates, attaches summaries and source metadata, and labels each item with AI-assisted sentiment.

2 sats / call
GET /api/bitcoin-news
Cached for 1 hour

What It Does

ArkAPI Bitcoin News is designed for agents and dashboards that want one clean Bitcoin news payload instead of juggling multiple RSS feeds. It fetches supported feeds, removes duplicate stories, keeps source names attached, and returns a normalized JSON response.

Why It Is Better Than Raw RSS

Raw RSS is cheap, but it usually means duplicate stories, uneven descriptions, and no fast way to tell whether a headline is constructive, hostile, or just neutral context. ArkAPI turns the feed merge into a cleaner decision primitive for bots and lightweight Bitcoin monitoring.

How To Call It

If you hit the endpoint directly without a funded token, ArkAPI will reject the request even if the landing page itself is public.

Example Request

curl -H "Authorization: Bearer ak_your_token" \ "https://arkapi.dev/api/bitcoin-news?limit=5" | jq

Use a funded token from the Fund page. This endpoint is cached for one hour, so repeated calls are usually very fast.

Example Response

{ "success": true, "data": { "items": [ { "title": "Morgan Stanley sets spot bitcoin ETF fee at 0.14%", "source": "The Block", "link": "https://www.theblock.co/example", "published_at": "2026-03-29T17:00:00Z", "summary": "A lower ETF fee adds more competitive pressure to the spot Bitcoin market.", "sentiment": "positive" } ] }, "cost_sats": 2, "balance_remaining": 8637, "response_ms": 6, "endpoint": "/api/bitcoin-news" }

Supported Query Parameters

?limit=5

Good Uses

For broader platform usage, see the main docs and the live catalog.

Discovery