Integrate the Aevum API

Access 2.4M+ verified articles, knowledge graphs, and structured datasets through a modern, RESTful API. Free tier available for developers and researchers.

Authentication

All API requests require an API key passed in the header. Sign up in the developer console to generate yours.

POST /auth/token

Exchange your secret key for a time-limited bearer token. Tokens expire in 24 hours and auto-refresh.

bash
curl -X POST https://api.aevum.dev/v2/auth/token \n  -H "Authorization: Bearer YOUR_SECRET_KEY" \n  -H "Content-Type: application/json" \n  -d '{"scope": ["read:articles", "read:graphs"]}'
python
import aevum_sdk

client = aevum_sdk.Client(api_key="YOUR_SECRET_KEY")
token = client.auth.exchange(scopes=["read:articles"])
# token.expires_at -> 2025-12-31T23:59:59Z
javascript
const { AevumClient } = require("@aevum/sdk");

const client = new AevumClient({ apiKey: "YOUR_SECRET_KEY" });
const token = await client.auth.exchange({ scopes: ["read:articles"] });

Core Endpoints

Explore our primary resource endpoints. All responses are JSON-formatted and include pagination metadata.

GET /v2/articles/search

Semantic search across 2.4M+ articles. Supports filters for language, discipline, and publication date.

GET /v2/articles/{id}

Retrieve full article content, metadata, citations, and related knowledge graph nodes.

POST /v2/graph/queries

Execute Cypher-like queries against the knowledge graph. Returns nodes, edges, and relationship weights.

GET /v2/datasets/catalog

List all available public datasets, their schemas, sizes, and download formats.

Public Datasets

Download structured, cleaned, and version-controlled datasets for machine learning, research, and analysis.

Articles 4.2 GB

Encyclopedia Corpus 2025Q3

Full text and metadata for 2.4M+ articles. Includes titles, summaries, citations, and editorial tags.

Knowledge Graph 1.8 GB

Semantic Relationship Graph

Nodes and edges mapping conceptual relationships across disciplines. Edge weights indicate confidence scores.

Multilingual 6.1 GB

140+ Language Alignments

Parallel sentence and paragraph alignments across 140 languages for NLP model training and evaluation.

Citations 890 MB

Academic Citation Network

Verified citation links between articles, external papers, books, and primary sources. Includes DOIs and ISBNs.

Official SDKs & Libraries

First-party libraries designed for type safety, automatic retries, pagination handling, and seamless integration.

🐍

Python

pip install aevum-sdk
🟨

Node.js

npm i @aevum/sdk

Java

com.aevum:client
🦀

Rust

cargo add aevum
🐹

Go

go get aevum.dev/sdk
💎

Ruby

gem install aevum

Rate Limits & Pricing

Transparent scaling. Free tier for exploratory use, paid tiers for production workloads and bulk dataset access.

Plan Requests / min Dataset Downloads Graph Queries Support
Researcher (Free) 60 1 / month Community
Developer 600 10 / month Shared pool Email
Pro 3,000 Unlimited Dedicated node Priority
Enterprise Custom Custom pipelines Private clusters 24/7 SLA