Developer SDKs
Integrate Aevum News' real-time content feeds, authentication, and analytics into your applications with our official, open-source SDKs.
JavaScript / Web
Lightweight, tree-shakeable client for browsers and Node.js. Supports real-time streams, CORS, and automatic retry logic.
iOS / Swift
Native Swift SDK with async/await support, Combine integration, and offline caching via Core Data.
Android / Kotlin
Jetpack Compose compatible, Coroutine-first architecture with built-in rate limiting and media pipeline.
Python
Async-first Python client with REST and GraphQL support. Ideal for backend services and data pipelines.
Go
High-performance, low-latency SDK for microservices. Full type safety, context propagation, and gRPC ready.
REST / GraphQL API
Direct HTTP/HTTPS access. OAuth 2.0 & API key authentication. Rate: 10k req/min. Webhook & streaming support.
Quick Start
npm install @aevum/news-sdk
// Initialize client with your API key
import { AevumClient } from '@aevum/news-sdk';
const client = new AevumClient({
apiKey: process.env.AEVUM_API_KEY,
region: 'auto',
timeout: 5000
});
// Fetch latest global feed
const feed = await client.getFeed({
category: 'world',
limit: 25,
format: 'json'
});
console.log(feed.articles[0].headline);