Integrate with the Aevum Encyclopedia API

Access 2.4M+ verified articles, real-time semantic search, and dynamic knowledge graphs via our high-performance RESTful API. Built for researchers, educators, and applications.

Get up and running in 3 steps

No complex setup. Just register, grab your key, and make your first request.

01

Create an Account

Sign up on the developer portal. Free tier includes 100 requests/day with full access to public endpoints.

02

Generate API Key

Navigate to Settings > API Keys. Create a new key and store it securely. Never expose it in client-side code.

03

Make Your First Request

Pass your key in the Authorization header. Explore semantic search, article retrieval, and graph traversal.

Secure Access via Bearer Tokens

All API requests require authentication using API keys. Tokens are scoped and can be rotated at any time.

Request Header

Include your API key in the Authorization header for every request.

Authorization: Bearer ae_live_sk_xxxxxxxxxxxxxxxxxxxx Content-Type: application/json

Example Request

curl https://api.aevumencyclopedia.com/v1/search \\ -H "Authorization: Bearer ae_live_sk_your_key" \\ -H "Content-Type: application/json" \\ -d '{"query": "quantum entanglement", "limit": 5}'
import requests headers = {"Authorization": "Bearer ae_live_sk_your_key", "Content-Type": "application/json"} payload = {"query": "quantum entanglement", "limit": 5} response = requests.post("https://api.aevumencyclopedia.com/v1/search", headers=headers, json=payload) print(response.json())
const response = await fetch('https://api.aevumencyclopedia.com/v1/search', { method: 'POST', headers: { 'Authorization': 'Bearer ae_live_sk_your_key', 'Content-Type': 'application/json' }, body: JSON.stringify({ query: 'quantum entanglement', limit: 5 }) }); const data = await response.json(); console.log(data);

Core Endpoints

All endpoints are prefixed with /v1. Base URL: https://api.aevumencyclopedia.com

POST /search Semantic search across articles, tags, and metadata
GET /articles/{id} Retrieve full article content, citations, and revisions
GET /graph/nodes/{id} Fetch knowledge graph connections & related concepts
POST /ai/insights Generate AI summaries, comparisons, or Q&A from corpus
GET /categories List all disciplines with article counts & trending tags
GET /contributors/{slug} Expert profiles, verification status, and contribution history

Rate Limits & Tiers

Scale your integration responsibly. Upgrade anytime for higher throughput and priority support.

Tier Requests / Day Concurrency AI Features Pricing
Free 100 2 req/s Disabled $0
Pro 10,000 20 req/s Enabled (500/mo) $49/mo
Enterprise Unlimited Custom Unlimited Contact Sales

Official SDKs & Libraries

Accelerate development with type-safe, well-documented SDKs maintained by the Aevum team.

🐍

Python

pip install aevum-sdk

🟢

Node.js

npm i @aevum/encyclopedia

🐹

Go

go get github.com/aevum/sdk-go

💎

Ruby

gem install aevum

Ready to build?

Get your API key in seconds. Start exploring the world's most comprehensive knowledge graph today.

Generate API Key →