Developer API Access
Integrate Aevum's verified knowledge graph, semantic search, and real-time editorial updates directly into your applications. RESTful, fast, and documented.
99.99% Uptime SLA
<120ms Avg Latency
HTTPS & API Key Auth
🔑 Your API Key
⚠️ Keep your secret key secure. It grants full read access to the Aevum knowledge base. Never expose it in client-side code.
Quick Start
Authenticate and make your first request in under a minute. Choose your language:
curl https://api.aevum.com/v1/articles/search \
-H "Authorization: Bearer ae_live_sk_xxxxxxxxxxxx" \
-H "Content-Type: application/json" \
-d '{
"query": "quantum entanglement",
"limit": 5,
"include_graph": true
}'
import requests
response = requests.get(
"https://api.aevum.com/v1/articles/search",
headers={"Authorization": "Bearer ae_live_sk_xxxxxxxxxxxx"},
params={
"query": "renaissance art",
"limit": 5
}
)
print(response.json())
const response = await fetch(
"https://api.aevum.com/v1/articles/search",
{
headers: {
"Authorization": "Bearer ae_live_sk_xxxxxxxxxxxx"
}
}
);
const data = await response.json();
console.log(data);
Core Endpoints
Explore the main resources available through the v1 API.
GET
/v1/articles/search
Full-text & semantic search across the entire encyclopedia.
GET
/v1/articles/:id
Retrieve a complete article with metadata and references.
GET
/v1/graph/nodes
Query the knowledge graph for entity relationships.
POST
/v1/contributions/draft
Submit new content or edits for editorial review.
GET
/v1/categories
List all taxonomy categories and sub-disciplines.
GET
/v1/health
API status, latency metrics, and maintenance windows.
Usage Tiers & Rate Limits
Transparent scaling. Upgrade as your application grows.
| Plan | Requests / Month | Rate Limit | Features | Cost |
|---|---|---|---|---|
| Developer | 100,000 | 30 req/min | Read-only, Basic Graph | Free |
| Pro Popular | 2,500,000 | 120 req/min | Full Search, Export, Priority Support | $49/mo |
| Enterprise | Unlimited | Custom | White-label, SSO, Dedicated Infra | Contact Sales |
📖 Documentation
Authentication → Search Parameters → Response Schema → Error Codes → SDKs & Postman → Changelog →🟢 System Status
API Gateway
Operational
Search Index
Operational
Knowledge Graph
Operational
CDN / Assets
Operational
Last updated: Real-time. View full status page →