⚡ Developer Program v3.2

Build with the Aevum News API

Access real-time, structured news data, advanced search, and webhook-driven updates. Power your applications with the most reliable news infrastructure on the web.

Everything You Need to Build

Designed for speed, reliability, and developer experience.

🌐

REST & GraphQL

Flexible endpoints with predictable JSON responses. Query exactly what you need with our GraphQL playground.

🔔

Real-Time Webhooks

Subscribe to breaking news, category updates, or custom alerts. Delivered with retry logic and signature verification.

📦

Official SDKs

First-party libraries for Python, JavaScript, Go, and Rust. TypeScript definitions included for seamless integration.

Global Edge Network

Sub-100ms response times worldwide. CDN-cached responses for frequently requested endpoints and historical data.

🔍

Advanced Search

Full-text search with filters for date, category, language, source credibility, and sentiment analysis.

🛡️

Content Moderation

Built-in filters for sensitive content, clickbait detection, and AI-generated content labeling per EU Digital Services Act.

Enterprise-Grade Protection

Your API keys and data are secured with industry-standard protocols. We support modern auth flows and granular permissions.

  • API Key Authentication (Bearer Tokens)
  • OAuth 2.0 / OIDC for user-facing apps
  • IP Allowlisting & Geofencing
  • Rate Limiting with Burst Control
  • TLS 1.3 End-to-End Encryption
# Authentication Headers
Authorization: Bearer ak_live_8x92m...p4q1
X-Aevum-Version: 2024-11-01
X-Client-IP: 192.168.1.105 (whitelisted)
# Response Headers
X-RateLimit-Limit: 10000
X-RateLimit-Remaining: 9842
X-Request-ID: req_7f3a2b1c9d

Scale as You Grow

Transparent pricing. No hidden fees. Free tier for developers.

Developer
Free

Perfect for prototyping and personal projects

  • 100 requests / day
  • 30-day data retention
  • Basic search & categories
  • Community support
Enterprise
Custom

Dedicated infrastructure & SLA guarantees

  • Unlimited requests
  • Full historical archive
  • Dedicated account manager
  • Custom SLA & uptime guarantees
  • On-premise / VPC deployment

See It in Action

Test endpoints with mock data before you integrate.

cURL
Python
JavaScript
GET https://api.aevumnews.com/v1/articles\
  -H Authorization: Bearer YOUR_API_KEY\
  -H Accept: application/json\
  ?q=climate+summit&category=world&limit=5
import aevumnews

# Initialize client
client = aevumnews.Client(api_key="YOUR_API_KEY")

# Fetch latest articles
articles = client.articles.search(
    query="climate summit",
    category="world",
    limit=5
)

for article in articles:
    print(article.title, article.published_at)
import { AevumClient } from "@aevumnews/sdk";

const client = new AevumClient({
  apiKey: process.env.AEVUM_API_KEY
});

const response = await client.articles.search({
  q: "climate summit",
  category: "world",
  limit: 5
});

console.log(response.data.map(a => a.title));

Everything You Need

Ready to integrate Aevum News?

Generate your API key in seconds. No credit card required for the developer tier.

Generate API Key →