Access 2.4M+ verified, AI-enhanced encyclopedia articles via REST & GraphQL. Real-time semantic search, knowledge graphs, and multilingual translation built for developers.
Sign up for a free developer account and generate a key from your dashboard.
All requests go to https://api.aevum.org/v1
Include your key in the header: Authorization: Bearer <KEY>
Search articles, retrieve knowledge graphs, or translate content instantly.
curl -X GET "https://api.aevum.org/v1/search?q=quantum+computing&limit=5" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json"
import requests headers = { "Authorization": "Bearer YOUR_API_KEY", "Content-Type": "application/json" } response = requests.get( "https://api.aevum.org/v1/search", params={"q": "quantum computing", "limit": 5}, headers=headers ) print(response.json())
const fetch = require('node-fetch'); const response = await fetch( 'https://api.aevum.org/v1/search?q=quantum+computing&limit=5', { headers: { 'Authorization': 'Bearer YOUR_API_KEY', 'Content-Type': 'application/json' } } ); console.log(await response.json());
Semantic article search with filters for language, discipline, and recency.
Retrieve full article content, metadata, references, and related entries.
Generate dynamic concept relationship maps with node/edge data.
AI-powered translation preserving academic tone and domain terminology.
Submit new articles or revisions for expert editorial review.