Free AI News API
Access curated AI news data from 22+ sources via REST API. Technology, investments, tips, videos — all in 8 languages, JSON format, no authentication required.
What endpoints does the AI news API provide?
Our REST API gives you programmatic access to curated AI news data. All endpoints return JSON responses with data in up to 8 languages. Period IDs use the format YYYY-MM-DD (daily) or YYYY-kwWW (weekly).
/api/weeksList all available periods (weeks with nested days)
/api/tech/{periodId}Technology news + video summaries
/api/investment/{periodId}Funding rounds, M&A, stock data
/api/tips/{periodId}Practical AI tips from Reddit + blogs
/api/videos/{periodId}Curated YouTube video summaries
/api/stock/{ticker}Real-time stock data (Polygon.io)
/api/stock/batch/?tickers=X,YBatch stock lookup
/api/trends/{periodId}Trending AI topics
How do I use the AI news API?
Get started in seconds with our API. Here are examples in three popular languages — no libraries, no setup, just a simple HTTP call:
cURL
curl -s https://api-production-3ee5.up.railway.app/api/tech/2026-02-26 | python -m json.toolJavaScript
// Fetch today's AI tech news
const response = await fetch(
'https://api-production-3ee5.up.railway.app/api/tech/2026-02-26'
);
const data = await response.json();
// data.en = Array of English tech articles
// data.de = Array of German tech articles
// data.zh, data.fr, data.es, data.pt, data.ja, data.ko
console.log(data.en[0].content);Python
import requests
# Fetch today's AI tech news
response = requests.get(
'https://api-production-3ee5.up.railway.app/api/tech/2026-02-26'
)
data = response.json()
# data['en'] = List of English tech articles
# data['de'] = List of German tech articles
for article in data['en']:
print(article['content'])What does the API response look like?
Every endpoint returns a multilingual JSON response with data in all 8 supported languages. Here is an example of a typical response:
{
"de": [
{
"id": 1,
"content": "OpenAI stellt GPT-5 vor...",
"source": "TechCrunch",
"category": "LLM",
"impact": "high",
"timestamp": "2026-02-26T14:30:00Z"
}
],
"en": [
{
"id": 1,
"content": "OpenAI introduces GPT-5...",
"source": "TechCrunch",
"category": "LLM",
"impact": "high",
"timestamp": "2026-02-26T14:30:00Z"
}
],
"zh": [...],
"fr": [...],
"es": [...],
"pt": [...],
"ja": [...],
"ko": [...]
}Why use the DataCube AI News API?
No Auth Required
Free tier requires no API keys or registration. Simply call the endpoint and get data.
8 Language Data
Every response includes data in German, English, Chinese, French, Spanish, Portuguese, Japanese, and Korean.
22+ Sources
Curated content from TechCrunch, MIT Technology Review, Ars Technica, Hacker News, Reddit, and YouTube.
Real-Time Stock Data
Real-time stock market data integrated via Polygon.io. Single and batch queries for AI-sector stocks available.
Daily Updates
Data is automatically updated daily at 23:00 Berlin time. Weekly digests are also available.
JSON Format
All responses are cleanly structured JSON. Easy to parse and ready to use directly in any application.
Frequently Asked Questions
What is the AI news API?
Is the API free?
Do I need authentication?
What data formats are supported?
How often is the data updated?
More Free AI Tools
Start Building with AI News Data
Trusted by developers worldwide