Official SDKs

JS
v3.2.1

@aevum/news-sdk

Complete JavaScript/Node.js client for REST & GraphQL APIs. Includes TypeScript definitions, automatic retries, and webhook handling.

PY
v2.8.0

aevum-python

Python 3.8+ library with async support. Stream real-time news feeds, manage API keys, and handle pagination efficiently.

GO
v1.5.3

aevum-go

Lightweight Go module designed for high-throughput services. Includes context support, rate limiters, and gRPC clients.

JA
v4.0.2

aevum-android-sdk

Official Android & Java client. Optimized for low bandwidth, includes Jetpack Compose UI components for news feeds.

SW
v2.1.0

Aevum-iOS

Native iOS SDK with Swift 5. Support for SwiftUI, WidgetKit, and Push Notifications. ARC compliant and memory safe.

PH
v3.0.5

Aevum-PHP

Composer-ready PHP library. Includes WordPress plugin, Laravel package, and standard REST client with PSR-18 compliance.

API & Integration Tools

🔌

REST API

Comprehensive endpoints for articles, authors, categories, and real-time feeds. OpenAPI 3.0 spec included.

Webhooks & Events

Trigger actions on story publication, updates, or category changes. Configurable payload formats and retry logic.

📊

Analytics API

Access engagement metrics, readership data, and content performance. Export to CSV or integrate via GraphQL.

🛠️

CLI Toolkit

Manage APIs, generate docs, test endpoints, and monitor quotas directly from your terminal.

Quick Start Guide

$ pip install aevum-python
# Initialize client with your API key
import aevum
client = aevum.Client(api_key="your_key")
articles = client.feeds.latest(limit=10)
for art in articles: print(art.title)