Curated AI news intelligence for your apps, bots, and workflows
Free
€0 /month
Pro
€7.99 /month
Enterprise
Custom
Get your free API key and start fetching AI news in under 60 seconds:
curl -X POST https://www.dailyai.site/api/v1/keys \
-H "Content-Type: application/json" \
-d '{"name": "My App", "email": "[email protected]"}'
curl https://www.dailyai.site/api/v1/feed \ -H "X-API-Key: dai_your_key_here"
import requests
API_KEY = "dai_your_key_here"
headers = {"X-API-Key": API_KEY}
# Get latest AI news
response = requests.get(
"https://www.dailyai.site/api/v1/feed",
headers=headers,
params={"topic": "all", "language": "en", "limit": 10}
)
articles = response.json()["articles"]
for article in articles:
print(f"📰 {article['headline']}")
print(f" Source: {article['source_name']}")
print()
const API_KEY = 'dai_your_key_here';
const response = await fetch(
'https://www.dailyai.site/api/v1/feed?topic=all&limit=10',
{ headers: { 'X-API-Key': API_KEY } }
);
const { articles } = await response.json();
articles.forEach(a => console.log(`📰 ${a.headline} (${a.source_name})`));
Get the curated AI news feed with filtering and pagination.
| Parameter | Type | Default | Description |
|---|---|---|---|
topic | string | all | Filter by topic: all, For You, AI Models, Research, Business, Tools, Top Stories, Tech & Science |
country | string | GLOBAL | Country code: GLOBAL, US, GB, DE, IN |
language | string | en | Language: en, de |
offset | int | 0 | Pagination offset |
limit | int | 15 | Items per page (max 30) |
Get trending story threads — groups of related articles about the same event.
| Parameter | Type | Default | Description |
|---|---|---|---|
country | string | GLOBAL | Country code |
language | string | en | Language |
Get the DailyAI source trust database — all tracked sources with their trust tier.
Create a new API key. Send name and email in the JSON body.
Get usage statistics for your API key.
| Field | Tier | Description |
|---|---|---|
headline | Free | Article headline |
summary | Free | AI-generated 1-2 sentence summary |
source_name | Free | Source publication name |
importance | Free | Importance score (1-10) |
category | Free | Article category |
topic | Free | UI topic grouping |
article_url | Free | Link to original article |
published_at | Free | Publication timestamp |
why_it_matters | Pro | Why a professional should care |
source_trust | Pro | Source trust tier: high, medium, low |
sentiment | Pro | Market sentiment: bullish, bearish, neutral |
story_thread | Pro | Thread label grouping related stories |
thread_count | Pro | Number of sources covering this thread |
Include your API key in the X-API-Key header with every request:
X-API-Key: dai_your_key_here
Rate limits are enforced on a rolling 24-hour window. Check your remaining quota with the /api/v1/keys/stats endpoint. Rate limit headers are included in 429 responses.
Get your free API key and start integrating AI news intelligence into your app today.
Get Started →