Skip to content

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.

REST API8 LanguagesJSON ResponseFree Tier

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).

GET/api/weeks

List all available periods (weeks with nested days)

GET/api/tech/{periodId}

Technology news + video summaries

GET/api/investment/{periodId}

Funding rounds, M&A, stock data

GET/api/tips/{periodId}

Practical AI tips from Reddit + blogs

GET/api/videos/{periodId}

Curated YouTube video summaries

GET/api/stock/{ticker}

Real-time stock data (Polygon.io)

GET/api/stock/batch/?tickers=X,Y

Batch stock lookup

GET/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.tool

JavaScript

// 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?
The DataCube AI News API is a free REST interface that provides curated access to AI news data from 22+ sources. It delivers technology news, investment data, practical tips, and video summaries in 8 languages as JSON.
Is the API free?
Yes, there is a generous free tier available. The free tier requires no authentication and provides access to all basic endpoints. For advanced usage with higher limits, we offer Developer and Business plans.
Do I need authentication?
Free tier requires no authentication — just call the endpoints. The Developer tier uses API keys, which you can obtain through our developer portal.
What data formats are supported?
All endpoints return JSON responses. Each response contains data in up to 8 languages (DE, EN, ZH, FR, ES, PT, JA, KO), organized as keys in the JSON object.
How often is the data updated?
Data is updated automatically every day at 23:00 Berlin time. Our pipeline collects, classifies, processes, and translates content from 22+ sources. Weekly digests are also available.

More Free AI Tools

Start Building with AI News Data

Trusted by developers worldwide

Free AI News API — Curated AI News Data in 8 Languages | DataCube AI