Simple, well-documented APIs designed for developers. Get started in minutes.
Retrieve a paginated list of articles with optional filtering by category, date range, and relevance score.
GET https://api.aevumnews.com/v2/articles
Authorization: Bearer {your_api_key}
Content-Type: application/json
Query Parameters:
{
"limit": 20,
"offset": 0,
"category": "technology",
"sort": "published_desc",
"fields": "title,summary,author,published_at,url,image"
}
Fetch a single article by its unique ID with full content, metadata, and related articles.
// Response Example
{
"id": "art_9x2k4m",
"title": "Global Climate Summit Reaches Historic Agreement",
"summary": "In a landmark session, 190 nations signed a binding carbon reduction framework...",
"content": "[Full article HTML content]",
"author": {
"name": "Elena Rodriguez",
"avatar": "https://cdn.aevum.com/authors/er.jpg"
},
"category": "world",
"published_at": "2025-01-15T14:30:00Z",
"reading_time": 8,
"featured_image": "https://cdn.aevum.com/img/climate-summit.jpg"
}
Get the most-read articles in real-time, ranked by engagement metrics over configurable time windows.
GET https://api.aevumnews.com/v2/articles/trending
Query Parameters:
{
"window": "24h", // 1h, 6h, 24h, 7d, 30d
"limit": 10,
"metric": "views" // views, shares, engagement
}
Full-text search across all published articles with semantic understanding and relevance ranking.
GET https://api.aevumnews.com/v2/search?q=artificial+intelligence
Query Parameters:
{
"q": "artificial intelligence regulation",
"limit": 20,
"language": "en",
"date_from": "2025-01-01",
"date_to": "2025-01-31",
"sort": "relevance"
}
// Supports: natural language queries, synonyms,
// Boolean operators (AND, OR, NOT), phrase matching
Get real-time search suggestions and autocomplete results for your UI.
// Response Example
{
"suggestions": [
"artificial intelligence regulation",
"artificial intelligence in healthcare",
"artificial intelligence ethics"
],
"query_time_ms": 3
}
List all available content categories with article counts and hierarchy.
// Response Example
{
"categories": [
{
"id": "world",
"name": "World Affairs",
"slug": "world",
"article_count": 2481,
"icon": "🌍"
},
{
"id": "tech",
"name": "Technology",
"slug": "technology",
"article_count": 1843,
"icon": "💻"
}
// ... more categories
]
}
Register a webhook endpoint to receive real-time notifications when new articles are published or updated.
POST https://api.aevumnews.com/v2/webhooks/register
Authorization: Bearer {your_api_key}
Body:
{
"url": "https://your-site.com/webhook/aevum",
"events": ["article.published", "article.updated", "breaking"],
"secret": "your_webhook_secret"
}
// Incoming webhook payload:
{
"event": "article.published",
"timestamp": "2025-01-15T14:30:00Z",
"data": {
"article_id": "art_9x2k4m",
"title": "...",
"category": "world"
}
}
"article.published" — New article goes live
"article.updated" — Existing article is revised
"breaking" — Breaking news alert
"category.updated" — Category content refreshed
"trending.changed" — Trending articles shift
Plug-and-play feeds for every platform. No API key required for public feeds.
Standard RSS feeds for all categories. Compatible with every aggregator, CMS, and content management system.
https://feeds.aevumnews.com/rss/allW3C-compliant Atom syndication with full article content, author metadata, and rich media references.
https://feeds.aevumnews.com/atom/allModern JSON Feed format with full content, images, and structured data. Ideal for modern web apps and SPAs.
https://feeds.aevumnews.com/json/allFrom startups to enterprise publishers. Transparent pricing, no hidden fees.
Perfect for personal projects, prototypes, and small-scale applications.
For established publishers and platforms requiring reliable, scalable content access.
Tailored solutions for large-scale publishers, media conglomerates, and platforms.
Transparent limits that scale with your needs.
| Metric | Free | Pro | Enterprise |
|---|---|---|---|
| API Requests / Month | 1,000 | 100,000 | Unlimited |
| Requests / Minute | 10 | 200 | Custom |
| Content Access Window | 3 days | Unlimited | Unlimited |
| Feed Bandwidth | 1 GB / month | 100 GB / month | Unlimited |
| Webhook Endpoints | 0 | 5 | Unlimited |
| Search Queries / Day | 100 | 10,000 | Unlimited |
| Support Level | Community | Email & Chat | Dedicated PM |
| SLA Guarantee | None | 99.9% | 99.99% |
Everything you need to know about syndicating Aevum News content.
Request your API key or speak with our partnerships team about custom solutions.
Free tier available instantly. No credit card required.