Build with Aevum's Knowledge Engine

Access millions of verified articles, dynamic knowledge graphs, and AI-powered insights through our high-performance REST API and official SDKs.

Read the Documentation → Browse SDKs
Quick Start

Authentication

All API requests require an API key. Pass it in the Authorization header using the Bearer scheme.

🔑 API Key Management

Generate and rotate keys from your dashboard. Keys are scoped to specific projects and environments.

ae_live_sk_8f9d2c1a4b7e6f5d...

🌐 Request Format

Include the key in every request. All endpoints are served over HTTPS.

Authorization: Bearer YOUR_API_KEY Content-Type: application/json
Integration

Code Examples

Search the knowledge base with a single request. Try these examples in your preferred language.

# Search for verified articles curl -X GET \n https://api.aevum.dev/v1/search?q=quantum+computing \n -H "Authorization: Bearer $AEVUM_API_KEY"
import requests headers = {"Authorization": "Bearer YOUR_API_KEY"} response = requests.get( "https://api.aevum.dev/v1/search", params={"q": "quantum computing", "limit": 10}, headers=headers ) print(response.json())
const response = await fetch( 'https://api.aevum.dev/v1/search?q=quantum+computing', { headers: { 'Authorization': `Bearer YOUR_API_KEY` } } ); const data = await response.json(); console.log(data);
Tooling

Official SDKs

Pre-built, type-safe, and maintained by our core engineering team.

Python v2.4.1
pip install aevum-py
Node.js v3.1.0
npm i @aevum/sdk
Go v1.8.2
go get github.com/aevum/go-sdk
Java / Kotlin v2.0.5
gradle: com.aevum:core:2.0.5
Reference

Core Endpoints

Explore the primary resources available through the v1 API.

Method & Path Description Auth
GET/v1/search Full-text semantic search across all articles Required
GET/v1/articles/{id} Retrieve complete article metadata & content Required
POST/v1/graph/query Execute structured knowledge graph traversal Required
GET/v1/categories List all topic hierarchies & sub-disciplines Public
POST/v1/contributions/review Submit community edits for expert verification Contributor Key
Access Tiers

Rate Limits & Pricing

Scale your integration with transparent, usage-based tiers.

Developer
Free / forever
  • 100 requests / minute
  • Read-only access
  • Community support
  • Basic search & articles
Start Building
Enterprise
Custom / volume
  • Unlimited throughput
  • Dedicated infrastructure
  • SLA & 24/7 support
  • Custom integrations & onboarding
Contact Sales

Ready to Integrate?

Join thousands of developers building with verified, AI-enhanced knowledge. Get your API key in under 60 seconds.

Create Developer Account →