🚀 v2.4.0 Stable

Integrate Aevum Encyclopedia into your apps

Access 2.4M+ verified articles, knowledge graphs, and AI-powered insights via a modern, RESTful API. Build faster with official SDKs for your favorite language.

Quick Start

Get up and running in under 3 minutes

1

Create an Account

Sign up for free and generate your API key from the Developer Dashboard.

2

Install an SDK

Use our official package for Python, JavaScript, Go, or PHP to simplify requests.

3

Make Your First Call

Query articles, search the knowledge graph, or retrieve entity metadata instantly.

Official SDKs

Type-safe, well-documented, and continuously maintained

🐍
v2.4.0

Python

pip install aevum-encyclopedia
🟨
v2.4.0

JavaScript / Node.js

npm install @aevum/sdk
🐹
v2.3.1

Go

go get github.com/aevum/sdk-go
🐘
v2.4.0

PHP

composer require aevum/sdk-php
💎
v2.2.0

Ruby

gem install aevum-ruby

Code Examples

See how to query the API and parse responses

cURL
Python
JavaScript
# Get article by slug
curl -X GET "https://api.aevum.com/v2/articles/quantum-computing" \ 
  -H "Authorization: Bearer YOUR_API_KEY" \ 
  -H "Accept: application/json"

# Response snippet
{
  "id": "art_8x9k2m",
  "title": "Quantum Computing",
  "summary": "A field of physics leveraging quantum mechanics...",
  "tags": ["physics", "technology", "science"],
  "verified": true
}
import aevum

client = aevum.Client(api_key="YOUR_API_KEY")

# Fetch article
article = client.articles.get("quantum-computing")
print(article.title, article.summary)

# Semantic search
results = client.search.query(
    text="machine learning in biology",
    limit=5,
    include_graph=True
)
for r in results:
    print(r.title, r.relevance_score)
import { AevumClient } from "@aevum/sdk";

const client = new AevumClient({ apiKey: "YOUR_API_KEY" });

// Get article
const article = await client.articles.get("quantum-computing");
console.log(article.title, article.summary);

// Graph traversal
const graph = await client.graph.neighbors({
  entityId: "ent_physics_quantum",
  depth: 2,
  types: ["related", "subfield"]
});

Rate Limits & Tiers

Scalable access for developers, teams, and enterprises

Tier Requests / Min Rate Limit (Daily) Graph Queries Support
Free 60 10,000 50 Community
Pro 600 500,000 5,000 Email + Priority
Enterprise Custom Unlimited Unlimited Dedicated Engineer

Ready to build with knowledge?

Generate your API key in seconds and explore the documentation.