Cointelegraph Scraper avatar

Cointelegraph Scraper

Pricing

from $4.00 / 1,000 results

Go to Apify Store
Cointelegraph Scraper

Cointelegraph Scraper

[πŸ’° $4.0 / 1K] Collect cryptocurrency news from Cointelegraph β€” title, summary, full article text, author, tags, category, publish date, cover image, and view counts. Search by keyword, browse a topic tag (bitcoin, ethereum, regulation), or grab the latest headlines, across 15 language editions.

Pricing

from $4.00 / 1,000 results

Rating

0.0

(0)

Developer

SolidCode

SolidCode

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

3 days ago

Last modified

Share

Pull cryptocurrency news from Cointelegraph at scale β€” headlines, summaries, full article bodies, authors, topic tags, categories, publish timestamps, cover images, and view counts, across 15 native-language editions. Built for crypto analysts, quant and sentiment traders, and content teams who need a clean, structured news feed without copying articles out of the browser one at a time.

Why This Scraper?

  • 15 native-language editions β€” English, German, Spanish, French, Italian, Japanese, Brazilian Portuguese, Arabic, Russian, Turkish, Korean, Chinese (Simplified & Traditional), Vietnamese, and Hindi β€” each returning native headlines, summaries, and bodies with the correct per-edition article URLs.
  • Three discovery modes in one actor β€” grab the latest headlines feed, run a keyword search across the full archive, or browse every article under a topic tag (bitcoin, ethereum, regulation, defi, nft). Flip one dropdown to switch.
  • Full article body as clean plain text β€” not a truncated preview. Every paragraph, heading, and list item is extracted and ready for sentiment models, summarization, or republishing.
  • View counts on every article β€” a built-in engagement signal for ranking trending stories and weighting sentiment, included at no extra request.
  • Author name and profile URL on every row β€” track specific journalists or build a contributor map across the publication.
  • Topic tags plus category on every article β€” Markets, Bitcoin, Regulation, DeFi and the granular tag slugs, so you can filter and cluster news without re-reading the body.
  • Dual publish timestamps β€” a machine-sortable ISO 8601 timestamp and a human-readable date on the same row, so dashboards and humans both get what they need.
  • Up to 100,000 articles per run β€” set a cap or use 0 to sweep an entire feed until it's exhausted, for both real-time monitoring and deep historical archive pulls.

Use Cases

Market Research & Trend Analysis

  • Track which coins and narratives dominate the news cycle by tag volume
  • Surface trending stories by view count to spot emerging market themes
  • Compare coverage of a token across regulation, DeFi, and markets categories
  • Build a historical archive of crypto news for back-testing market reactions

Trading Signals & Sentiment

  • Feed full article bodies into sentiment models for directional signals
  • Monitor the latest headlines feed in near real time for breaking news
  • Weight sentiment by article view count to prioritize high-impact stories
  • Flag regulation and enforcement news that moves specific assets

Content & Media Monitoring

  • Watch a topic tag (e.g. bitcoin, ethereum) for every new article
  • Track a specific author or contributor across all their published pieces
  • Repurpose summaries and tags into newsletters and curated digests
  • Benchmark your own coverage against Cointelegraph's by category

Multilingual & Regional Research

  • Compare how the same story is framed across 15 language editions
  • Pull the Japanese, Korean, Arabic, or Vietnamese editions for regional desks
  • Localize a crypto newsletter with native-language summaries and headlines
  • Study regional regulatory coverage in its original language

Academic & Industry Intelligence

  • Assemble a labeled news dataset for crypto NLP and event studies
  • Quantify media attention on a protocol over time using publish dates
  • Map the tag co-occurrence graph to study how narratives connect
  • Cite and link original articles with stable canonical URLs

Getting Started

Latest Headlines

The simplest run β€” newest crypto news first, no search term needed:

{
"searchMode": "latest",
"maxResults": 50
}

Find every article matching your search words across the archive:

{
"searchMode": "search",
"query": "bitcoin ETF",
"language": "en",
"maxResults": 200
}

Browse a Topic Tag (Headlines Only, Fast Sweep)

Pull every article filed under a tag, skipping full bodies for a fast, lightweight run:

{
"searchMode": "tag",
"query": "ethereum",
"includeFullText": false,
"maxResults": 500
}

A keyword search on the Spanish edition with complete article bodies:

{
"searchMode": "search",
"query": "regulaciΓ³n cripto",
"language": "es",
"includeFullText": true,
"maxResults": 1000
}

Input Reference

What to Collect

ParameterTypeDefaultDescription
searchModeselectlatestHow to find articles: latest (newest headlines first), search (keyword search across the archive), or tag (every article under a topic tag).
querystring""Your search words for search mode, or the topic tag slug (e.g. bitcoin, ethereum, regulation, defi) for tag mode. Leave empty for latest.

Language

ParameterTypeDefaultDescription
languageselectenThe Cointelegraph edition to collect from. 15 options: English, Spanish, Portuguese (Brazil), French, Italian, German, Turkish, Arabic, Russian, Japanese, Korean, Chinese (Simplified), Chinese (Traditional), Vietnamese, and Hindi. Results are in the chosen language.

Output Options

ParameterTypeDefaultDescription
includeFullTextbooleantrueCollect the complete article body, not just the title and summary. Turn off for a faster, lighter run when you only need headlines, summaries, and metadata.
maxResultsinteger100The most articles to collect in one run. Set to 0 for as many as the feed returns (up to 100,000).

Output

Each article is one flat row. Here's a representative result with full text enabled:

{
"id": "2065432",
"url": "https://cointelegraph.com/news/bitcoin-etf-inflows-record-week",
"title": "Bitcoin ETF inflows hit record week as institutions pile in",
"leadText": "Spot Bitcoin ETFs notched their strongest week of inflows yet, signaling renewed institutional appetite.",
"fullText": "Spot Bitcoin exchange-traded funds recorded their largest weekly inflows since launch...\n\nAnalysts attribute the surge to easing macro conditions...",
"author": "Jane Crypto",
"authorUrl": "https://cointelegraph.com/authors/jane-crypto",
"category": "Markets",
"tags": ["Bitcoin", "ETF", "Institutional Investors"],
"publishedAt": "2026-06-12T12:03:23.914Z",
"publishedHuman": "Jun 12, 2026",
"coverImage": "https://images.cointelegraph.com/cdn-cgi/image/example.jpg",
"views": 18452,
"language": "en"
}

Core Article

FieldTypeDescription
idstringUnique Cointelegraph article identifier
urlstringCanonical article URL on the chosen edition's domain
titlestringArticle headline
languagestringEdition the article came from (e.g. en, es, jp)

Content

FieldTypeDescription
leadTextstringArticle summary / lead paragraph
fullTextstring | nullComplete article body as clean plain text. null when includeFullText is off
coverImagestring | nullCover image URL

Authorship & Taxonomy

FieldTypeDescription
authorstring | nullAuthor display name
authorUrlstring | nullAuthor profile URL on the same edition
categorystring | nullSection / category (Markets, Bitcoin, Regulation, etc.)
tagsstring[]Topic tags applied to the article

Dates & Engagement

FieldTypeDescription
publishedAtstringPublish date/time as an ISO 8601 timestamp
publishedHumanstring | nullHuman-readable publish date (e.g. "Jun 12, 2026")
viewsnumber | nullArticle view count

Tips for Best Results

  • Use latest for monitoring, tag for coverage, search for topics. Latest gives you the freshest feed, a tag pulls the full history under a theme, and search finds articles matching free-text words anywhere in the archive.
  • Sweep headlines first, then enrich the ones you care about. Run with includeFullText: false to grab a fast, cheap list of titles, tags, and view counts, then re-run with full text on for just the stories worth reading in depth.
  • Match the tag slug to the URL form. In tag mode, query is the slug exactly as it appears in a Cointelegraph tag URL β€” lowercase, hyphenated (e.g. defi, nft, regulation).
  • Pick the right edition up front. Each language is a separate edition with its own articles and URLs β€” set language to the market you're studying rather than translating English output later.
  • Sort by publishedAt, rank by views. The ISO timestamp gives you a clean time series for event studies, while the view count is your built-in popularity signal for surfacing what's trending.
  • Start small to validate, then scale. Try maxResults: 25 to confirm the mode and language return what you expect, then raise the cap β€” set 0 for an exhaustive pull.

Pricing

From $4.00 per 1,000 results β€” undercuts the going rate for crypto news extraction while bundling full article bodies and view counts at no extra charge. Bronze, Silver, and Gold subscribers pay progressively less; the table below shows total cost at each discount tier.

ResultsNo discountBronzeSilverGold
100$0.48$0.45$0.43$0.40
1,000$4.80$4.50$4.25$4.00
10,000$48.00$45.00$42.50$40.00
100,000$480.00$450.00$425.00$400.00

A "result" is any article row in the output dataset. No compute or time-based charges β€” you pay per result, plus a small fixed per-run start fee.

Integrations

Export data in JSON, CSV, Excel, XML, or RSS. Connect to 1,500+ apps via:

  • Zapier / Make / n8n β€” Workflow automation
  • Google Sheets β€” Direct spreadsheet export
  • Slack / Email β€” Notifications on new results
  • Webhooks β€” Trigger custom APIs on run completion
  • Apify API β€” Full programmatic access

This actor is designed for legitimate news monitoring, market research, sentiment analysis, and academic study. Users are responsible for complying with applicable laws and Cointelegraph's terms of service, including respecting content usage and copyright rules for any articles collected. Do not republish full article text without permission, and do not use collected data for spam, harassment, or any illegal purpose.