API Access & Integration

Integrate Aevum's verified, multilingual knowledge base into your applications. Access 2.4M+ articles, semantic search, AI insights, and real-time knowledge graphs through our RESTful API.

Authentication

All API requests require authentication via Bearer token. Generate your key from the developer dashboard and include it in the Authorization header.

Your API Key

aevum_sk_live_7x9k2m4p8q1r5t6v0w3y5z8a

Keep this key secure. Never expose it in client-side code or public repositories.

Quick Start

curl "https://api.aevumencyclopedia.com/v1/articles/quantum-computing" \
  -H "Authorization: Bearer aevum_sk_live_7x9k2m4p8q1r5t6v0w3y5z8a" \
  -H "Accept: application/json"
import requests

headers = {
    "Authorization": "Bearer aevum_sk_live_7x9k2m4p8q1r5t6v0w3y5z8a",
    "Accept": "application/json"
}

response = requests.get("https://api.aevumencyclopedia.com/v1/articles/quantum-computing", headers=headers)
data = response.json()
print(data["title"])
const response = await fetch(
  'https://api.aevumencyclopedia.com/v1/articles/quantum-computing',
  {
    headers: {
      'Authorization': 'Bearer aevum_sk_live_7x9k2m4p8q1r5t6v0w3y5z8a',
      'Accept': 'application/json'
    }
  }
);
const data = await response.json();
console.log(data.title);

Core Endpoints

Method Endpoint Description
GET /v1/articles/{slug} Retrieve full article content, metadata, and references
GET /v1/search Semantic & keyword search across the entire knowledge base
POST /v1/ai-insights Get AI-generated summaries, connections, or clarifications
GET /v1/graph/{node_id} Fetch related concepts & knowledge graph relationships
POST /v1/translate Translate article content to 140+ supported languages

Access Tiers & Rate Limits

Free
$0 /month
  • 1,000 requests / day
  • Read-only access
  • Basic search & articles
  • Community support
Get Started
Enterprise
Custom
  • Unlimited requests
  • Dedicated infrastructure
  • Custom data exports
  • SLA & 24/7 support
Contact Sales

Need Help Integrating?

Our developer team is ready to assist with SDK setup, rate limit optimization, or custom enterprise solutions.