Search Crypto News
AI-powered search for cryptocurrency news from trusted, authoritative sources.
Tool Name: exa_search_crypto_news
MCP Endpoint: POST /hive_web_search/mcp
Data Source: Exa AI (Neural Search)
Overview
Search crypto news with neural AI that understands context and meaning:
- Trusted sources only: CoinDesk, Cointelegraph, The Block, Decrypt, Bitcoin Magazine
- Semantic search: Understands intent, not just keywords
- Date filtering: Search within specific time ranges
- High relevance: AI-ranked results based on query understanding
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| query | string | Yes | Search query (e.g., "Bitcoin ETF approval") |
| num_results | number | No | Results to return (default: 10, max: 100) |
| start_published_date | string | No | Start date filter (ISO: "2024-01-01") |
| end_published_date | string | No | End date filter |
Examples
Basic News Search
curl -X POST https://api.hiveintelligence.xyz/api/execute \
-H "Content-Type: application/json" \
-d '{
"toolName": "exa_search_crypto_news",
"arguments": {
"query": "Bitcoin ETF institutional adoption",
"num_results": 10
}
}'
Python - News Monitor
import requests
from datetime import datetime, timedelta
def search_crypto_news(query, days_back=7, num_results=20):
start_date = (datetime.now() - timedelta(days=days_back)).strftime("%Y-%m-%d")
response = requests.post(
"https://api.hiveintelligence.xyz/api/execute",
json={
"toolName": "exa_search_crypto_news",
"arguments": {
"query": query,
"num_results": num_results,
"start_published_date": start_date
}
}
)
return response.json()
# Monitor Bitcoin ETF news
news = search_crypto_news("Bitcoin ETF flows institutional")
for article in news.get("results", []):
print(f"- {article['title']}")
print(f" {article['url']}")
Trusted Sources
| Source | Coverage |
|---|---|
| CoinDesk | Breaking news, market analysis |
| Cointelegraph | Global crypto news |
| The Block | Research, data journalism |
| Decrypt | News, guides, reviews |
| Bitcoin Magazine | Bitcoin-focused news |
Related Tools
- exa_search_research - Academic papers and research
- exa_search_social - Social media sentiment
- exa_search_general - General web search
- exa_get_page_content - Extract page content
- get_topic_news - Topic-specific news feed
- get_topic_metrics - Social metrics and sentiment
- get_trending_topics - Trending crypto topics