Build with Human Knowledge at Scale

Access 2.4M+ verified articles, semantic search, and real-time knowledge graphs through our high-performance REST & GraphQL APIs. Designed for researchers, educators, and builders.

curl -X GET "https://api.aevum.dev/v1/articles/quantum-computing" \
-H "Authorization: Bearer $AEVUM_KEY"

# Response (200 OK) • 0.04s
{
"title": "Quantum Computing",
"verified": true,
"last_updated": "2025-04-12T08:30:00Z",
"content_preview": "Quantum computing leverages..."
}
Quick Start

Integrate in 3 Minutes

Get from sign-up to your first API call faster than ever. No complex setups, just clean endpoints and predictable responses.

01

Generate API Key

Create a free developer account and generate your first key from the dashboard. Keys are scoped by environment and rate limit tier.

02

Make Your First Request

Use any HTTP client or SDK. Include your key in the `Authorization` header. Responses are paginated and cached by default.

03

Parse & Display

Structured JSON with metadata, citations, and multilingual support. Build search, recommendation, or RAG pipelines effortlessly.

API Overview

Enterprise-Grade Knowledge APIs

RESTful endpoints with GraphQL support. Built for reliability, with 99.99% uptime SLA and comprehensive error handling.

🔐 OAuth 2.0 & API Keys

Flexible authentication with scoped permissions, IP whitelisting, and automatic key rotation.

⚡ Rate Limits

Granular throttling with predictable bursts. Free tier: 100 req/min. Enterprise: custom quotas.

🌐 GraphQL Playground

Query nested knowledge graphs, filter by discipline, language, or verification status in one request.

🔄 Webhooks & Streaming

Real-time updates when articles are edited, verified, or flagged. SSE and webhook support included.

📦 Bulk Export

Download datasets in JSON, CSV, or RDF formats. Ideal for training LLMs or academic research.

📊 Analytics Dashboard

Track usage, latency, cache hit rates, and error codes. Export logs to your SIEM or cloud provider.

Code Examples

Pick Your Language

Official SDKs and ready-to-use snippets. Copy, paste, and start building.

Python
JavaScript / Node
cURL
Go
import aevum

# Initialize client
client = aevum.Client(api_key="$AEVUM_KEY")

# Search articles
results = client.search(
  query="quantum entanglement",
  language="en",
  verified_only=True
)

for article in results:
  print(article.title, article.citations_count)
import { AevumClient } from "@aevum/sdk";

const client = new AevumClient({ apiKey: process.env.AEVUM_KEY });

const results = await client.search({ query: "behavioral economics", fields: ["title", "abstract", "tags"], limit: 10 });
console.log(results.items);
curl -X POST https://api.aevum.dev/v1/graphql \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $AEVUM_KEY" \
  -d '{
    "query": "query { article(id: \"rennaisance-art\") { title, verified, updatedAt } }"
}'
package main

import ( "fmt" "github.com/aevum/aevum-go" )

func main() { client := aevum.New(os.Getenv("AEVUM_KEY")) res, _ := client.GetArticle(context.Background(), "machine-learning") fmt.Printf("%s (Verified: %v)\n", res.Title, res.Verified) }
SDKs & Tools

Official Libraries

Maintained by our core team. Type-safe, async-ready, and optimized for production workloads.

🐍 Python (`pip install aevum`)

Async support, pandas integration, and RAG pipeline helpers. Ideal for ML/research workflows.

⚡ JavaScript / TypeScript (`npm i @aevum/sdk`)

Zero-config, Deno compatible, and Edge-optimized. Perfect for Next.js, Remix, and serverless.

🐹 Go (`go get github.com/aevum/aevum-go`)

High-performance, concurrency-safe client with connection pooling and automatic retries.

🛠️ CLI Tool (`aevum-cli`)

Terminal interface for quick lookups, bulk exports, and dataset validation. `npm i -g aevum-cli`

API Access Tiers

Scale Your Integration

Transparent pricing. No hidden fees. Upgrade or downgrade anytime.

Developer

$0 / month
  • 100 requests / minute
  • 5 concurrent connections
  • Basic search & article lookup
  • Community support
  • Rate limit headers included
Get Started Free

Enterprise

Custom
  • Unlimited throughput
  • Dedicated infrastructure
  • SLA & uptime guarantees
  • Custom data licensing
  • Technical account manager
Contact Sales
Developer Support

Resources & Community

Everything you need to build, debug, and scale with confidence.

📖

API Documentation

Endpoints, schemas, error codes, and migration guides.

💬

Discord Community

Ask questions, share projects, and get help from the team.

🐙

GitHub Repos

Open-source SDKs, examples, and bug tracking.

📊

System Status

Real-time API health, incidents, and maintenance windows.