Live News API

Real-Time Global News
Intelligence API

Access structured news data from 10,000+ sources across finance, technology, healthcare, science, and global events powered by AI.

Comprehensive News Coverage

Our API delivers structured, enriched data from tens of thousands of global sources, processed by advanced AI for maximum reliability and relevance.

🌐

Real-time News Aggregation

Fetch latest news from global sources in real-time.

🔍

Advanced Filtering

Filter news by category, region, language, and sentiment.

🌍

Multilingual Support

Access news in over 50 languages worldwide.

AI-Powered Summaries

Get concise AI-generated news summaries.

🕰️

Historical Archives

Access news archives dating back decades.

📊

Media Sentiment Analysis

Analyze news sentiment across different sources.

Sandbox Access

API Playground

Explore the capabilities of our real-time global news API in a live sandbox environment. Test queries, apply filters, review structured responses, and streamline your integration workflow.

Generate your API credentials from the Access Keys section in the Data Workspace. Copy the API Key and API Secret, and include them in your request headers as:

X-API-KEY
X-API-SECRET

Note: The access key works even without a News API subscription, but usage is limited to 100 requests per day.

Subscribe to a News API plan to unlock higher request limits and access full production features. You can explore available plans and pricing here:View News API Plans.

Upgrade your subscription to make the most out of the News API, including increased request quotas, better performance, and extended data access.

Request Configuration

POST

Headers

Payload Data

Advanced Filters

POST

Curl

curl -X 'POST' \
'https://fastapi-service-926531659836.us-central1.run.app/api/v1/news/search' \ \
-H 'accept: application/json' ' \
-H 'Content-Type: application/json' ' \
-H 'X-API-KEY: YOUR_API_KEY' ' \
-H 'X-API-SECRET: YOUR_API_SECRET' ' \
-d '
"query": "Oil",
"page": 1,
"size": 10
}'

Response

Awaiting Execution

Subscription Options

Scale Your Integration

Choose a plan that fits your application's traffic and complexity.

Explore All Plans

Base Plan

$99.00/mo
20K API calls

Economy Plan

$199.00/mo
50K API calls

Advance Plan

$799.00/mo
1M API calls

Enterprise Plan

CUSTOM
Custom Volume
developer.docs

Developer First Integration

Clean APIs, robust documentation, and ready-to-use boilerplate code for every major stack. Start building in minutes.

Code Samples

1import requests
2
3# Example for Search News endpoint
4url = "https://api.crawlsight.com/api/v1/news/api/search"
5headers = {
6    "accept": "application/json",
7    "Content-Type": "application/json"
8}
9
10payload = {
11    "query": "gold",
12    "page": 1,
13    "size": 10
14}
15
16try:
17    response = requests.post(url, json=payload, headers=headers)
18    response.raise_for_status()
19    data = response.json()
20    print("Search results:", data)
21except requests.exceptions.RequestException as e:
22    print("API request failed:", e)