Aevum Academic API

Programmatic access to 2.4M+ peer-reviewed, AI-verified academic entries. Build research tools, educational platforms, and data pipelines with our RESTful API.

https://api.aevum.academy/v1

# Overview

The Aevum Academic API provides structured, machine-readable access to our entire encyclopedia database. All responses are returned in JSON format, with strict schema validation and versioned endpoints.

Note: All API requests require authentication via Bearer token. Academic institutions receive elevated rate limits and access to citation export endpoints.
  • RESTful architecture with predictable resource-oriented URLs
  • JSON request/response format with OpenAPI 3.0 compliance
  • Real-time indexing with sub-100ms latency
  • Built-in citation formatting (APA, MLA, Chicago, BibTeX)

# Authentication

Authenticate requests using API keys in the `Authorization` header. Generate keys from your Developer Dashboard.

Authorization: Bearer ae_live_your_api_key_here
Never expose production API keys in client-side code. Use environment variables or secure proxy services.

# Endpoints

GET /knowledge-graph Concept relationship mapping

Query Parameters

ParameterTypeRequiredDescription
node_idstringYesUUID of the root concept
depthintegerNoTraversal depth (1-4, default: 2)
cURL
JavaScript
curl -X GET "https://api.aevum.academy/v1/knowledge-graph?node_id=ae_qm_8821&depth=3" \\
  -H "Authorization: Bearer ae_live_..."
const graph = await aevum.graph.fetch({ node_id: "ae_qm_8821", depth: 3 });
POST /citations/export Generate formatted citations

Request Body

ParameterTypeRequiredDescription
article_idsarray<string>YesList of article UUIDs
stylestringNoFormat: APA, MLA, Chicago, BibTeX (default: APA)
{
  "article_ids": ["ae_hist_4492", "ae_phys_1103"],
  "style": "Chicago"
}

# Rate Limits

Requests are limited to prevent abuse and ensure stability. Limits are calculated per API key using a sliding window.

Free Tier

100
requests / minute

Academic

1,000
requests / minute

Enterprise

10,000
requests / minute

# Official SDKs

Accelerate development with our maintained client libraries. All SDKs include automatic retries, pagination helpers, and type definitions.

# Developer Support

Need help integrating the API? Our developer team is available to assist with technical questions, webhook setup, and enterprise onboarding.