get_crypto_news
blockchair.comReturns the latest aggregated cryptocurrency news articles from https://blockchair.com, including language, source, links, tags, and description excerpts. Results are sorted by publication time descending and can be filtered by language.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_crypto_news?
Returns the latest aggregated cryptocurrency news articles from https://blockchair.com, including language, source, links, tags, and description excerpts. Results are sorted by publication time descending and can be filtered by language. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass limit, offset, languages, excerpt_length, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"articles": [
{
"file": "<string>",
"hash": "<string>",
"link": "<string>",
"tags": "<string>",
"time": "<string>",
"title": "<string>",
"source": "<string>",
"language": "<string>",
"permalink": "<string>",
"description": "<string>",
"description_excerpt": "<string>"
}
],
"source_site": "<string>",
"total_returned": 0,
"languages_in_results": [
"<string>"
]
}Call it
curl --location 'https://us-prod.notte.cc/functions/ed7bd625-2ec6-474d-bd1c-fcf9b43ab774/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "ed7bd625-2ec6-474d-bd1c-fcf9b43ab774",
"variables": {
"limit": 10,
"offset": 0,
"languages": "en,es,tr",
"excerpt_length": 240,
"timeout_seconds": 20
}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="ed7bd625-2ec6-474d-bd1c-fcf9b43ab774") — the "get_crypto_news" function, which returns the latest aggregated cryptocurrency news articles from https://blockchair.com, including language, source, links, tags, and description excerpts. Results are sorted by publication time descending and can be filtered by language.. It takes limit (int), offset (int), languages (list[str] | str), excerpt_length (int), timeout_seconds (int). Return the result as structured JSON.