Integrate real-time news delivery, content APIs, and analytics into your applications with our lightweight, cross-platform development kits.
Native Swift package for iOS 15+. Includes news feed widgets, offline caching, and push notification handling.
AndroidX compatible library for Kotlin & Java. Supports modular news cards, dark mode, and background sync.
Vanilla JS & TS package for modern browsers. Lightweight CDN delivery, SSR-friendly, and framework agnostic.
Async-ready Python client for content aggregation, API management, and data pipeline integrations.
Direct access to our news graph, search endpoints, and real-time webhooks. Includes Postman collection & OpenAPI spec.
Bridge SDK for Unity engine. Stream news feeds into games, apps, and interactive media experiences.
// 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);