CoinDesk News Scraper avatar

CoinDesk News Scraper

Pricing

from $5.00 / 1,000 results

Go to Apify Store
CoinDesk News Scraper

CoinDesk News Scraper

Scrape CoinDesk crypto news articles with full text, author, date, tags, and category. Filter by section (markets, policy, tech, consensus) or search query. Structured JSON-LD extraction.

Pricing

from $5.00 / 1,000 results

Rating

0.0

(0)

Developer

lulz bot

lulz bot

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

4 days ago

Last modified

Categories

Share

Scrape CoinDesk articles and crypto news with full article text, author information, publication dates, tags, and categories.

Features

  • Full article extraction — title, subtitle, body text, author, date, tags, image
  • Section filtering — browse Markets, Policy, Tech, or Consensus Magazine
  • Search — find articles by keyword (e.g. "bitcoin ETF", "ethereum merge")
  • JSON-LD extraction — uses CoinDesk's structured data for reliable parsing
  • Batch processing — scrape up to 500 articles per run

Input

FieldTypeDescription
searchQuerystringSearch term for articles. Leave empty to browse by section.
sectionselectFilter by section: all, markets, policy, tech, consensus-magazine
maxResultsintegerMaximum articles to scrape (1-500, default 50)
proxyConfigurationobjectOptional proxy configuration

Output

Each article in the dataset contains:

{
"title": "Bitcoin Falls After Trump Tariff Announcement",
"subtitle": "The crypto market reacted sharply to new trade tensions",
"author": "Will Canny",
"authors": [
{
"name": "Will Canny",
"jobTitle": "Finance Reporter",
"url": "https://www.coindesk.com/author/will-canny"
}
],
"section": "markets",
"publishedAt": "2026-04-25T18:53:48.734Z",
"modifiedAt": "2026-04-25T19:00:36.313Z",
"url": "https://www.coindesk.com/markets/2026/04/25/bitcoin-falls-...",
"body": "Full article text here...",
"bodyLength": 2847,
"tags": ["Bitcoin", "Donald Trump", "Markets"],
"image": "https://www.coindesk.com/resizer/...",
"scrapedAt": "2026-04-25T20:00:00.000Z"
}

Output fields

FieldDescription
titleArticle headline
subtitleArticle subtitle/abstract
authorAuthor name(s), comma-separated
authorsArray of author objects with name, jobTitle, url
sectionCoinDesk section (markets, policy, tech, etc.)
publishedAtISO 8601 publication timestamp
modifiedAtISO 8601 last modified timestamp
urlFull article URL
bodyFull article body text
bodyLengthCharacter count of body text
tagsArray of article tags/topics
imageFeatured image URL
scrapedAtWhen the scrape was performed

Use cases

  • Crypto market research — track news sentiment across Bitcoin, Ethereum, altcoins
  • Regulatory tracking — monitor crypto policy and regulation news
  • Content aggregation — build crypto news feeds and dashboards
  • Sentiment analysis — analyze article text for market sentiment signals
  • Historical research — collect article archives by topic or section

Example usage

Browse latest market news

{
"section": "markets",
"maxResults": 20
}

Search for Bitcoin ETF articles

{
"searchQuery": "bitcoin ETF",
"maxResults": 100
}

Scrape all sections

{
"section": "all",
"maxResults": 200
}

Notes

  • CoinDesk uses Next.js with server-side rendering. The scraper extracts JSON-LD structured data from article pages for reliable data extraction.
  • Rate limiting is built in to avoid overwhelming the server.
  • Body text extraction uses multiple fallback strategies for maximum coverage.
  • Articles are deduplicated by URL before scraping.