Developer Portal

Aevum News SDK & Downloads

Integrate real-time news delivery, content APIs, and analytics into your applications with our lightweight, cross-platform development kits.

View SDKs Read Documentation

Choose Your Environment

iOS / Swift v3.2.1

AevumCore-iOS

Native Swift package for iOS 15+. Includes news feed widgets, offline caching, and push notification handling.

📦 2.4 MB 🔄 Updated Oct 12, 2025
Android / Kotlin v3.1.8

AevumCore-Android

AndroidX compatible library for Kotlin & Java. Supports modular news cards, dark mode, and background sync.

📦 3.1 MB 🔄 Updated Oct 10, 2025
Web / JavaScript v4.0.2

@aevum/web-sdk

Vanilla JS & TS package for modern browsers. Lightweight CDN delivery, SSR-friendly, and framework agnostic.

📦 180 KB 🔄 Updated Oct 14, 2025
Python v2.5.0

aevum-python

Async-ready Python client for content aggregation, API management, and data pipeline integrations.

📦 45 KB 🔄 Updated Oct 8, 2025
REST / GraphQL v1.0

Aevum Content API

Direct access to our news graph, search endpoints, and real-time webhooks. Includes Postman collection & OpenAPI spec.

📦 Spec + Collection 🔄 Updated Oct 15, 2025
Unity / C# v1.2.4

Aevum-Unity

Bridge SDK for Unity engine. Stream news feeds into games, apps, and interactive media experiences.

📦 1.8 MB 🔄 Updated Sep 28, 2025

Initialize in 3 Lines

// 1. Install via npm or CDN
import { AevumClient } from '@aevum/web-sdk';

// 2. Initialize with your API key
const client = new AevumClient({
  apiKey: 'your_aevum_api_key',
  region: 'us-east-1',
  cacheEnabled: true
});

// 3. Fetch latest headlines
const feed = await client.getFeed({ limit: 20, category: 'world' });
console.log(feed.articles);

Support & Documentation