v2.4.1 โ€” Latest Stable

Developer SDKs

Integrate Aevum News' real-time content feeds, authentication, and analytics into your applications with our official, open-source SDKs.

๐ŸŒ
v3.1.0

JavaScript / Web

Lightweight, tree-shakeable client for browsers and Node.js. Supports real-time streams, CORS, and automatic retry logic.

๐ŸŽ
v2.8.2

iOS / Swift

Native Swift SDK with async/await support, Combine integration, and offline caching via Core Data.

๐Ÿค–
v4.0.1

Android / Kotlin

Jetpack Compose compatible, Coroutine-first architecture with built-in rate limiting and media pipeline.

๐Ÿ
v2.2.0

Python

Async-first Python client with REST and GraphQL support. Ideal for backend services and data pipelines.

๐Ÿน
v1.9.4

Go

High-performance, low-latency SDK for microservices. Full type safety, context propagation, and gRPC ready.

๐Ÿ”—
v2.0

REST / GraphQL API

Direct HTTP/HTTPS access. OAuth 2.0 & API key authentication. Rate: 10k req/min. Webhook & streaming support.

Quick Start

# Install the SDK
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);