⚡ v3.2 Developer Preview

Integrate the World's Knowledge Into Your Stack

Access 2.4M+ verified articles, real-time knowledge graphs, and semantic search via REST, GraphQL, or native SDKs. Built for speed, accuracy, and scale.

Connect Your Platform

Choose the protocol that fits your architecture. All endpoints support OAuth 2.0, API keys, and enterprise SSO.

🌐
Stable

REST API

Standard HTTP/2 interface for article retrieval, semantic search, and knowledge graph traversal. JSON responses with pagination.

JSONHTTP/2Rate-limited
Stable

GraphQL Endpoint

Fetch nested knowledge structures, cross-references, and metadata in a single query. Ideal for complex UI components.

SchemaNestedReal-time
🐍
Stable

Python & Node SDKs

Official client libraries with async support, caching, and automatic retry logic. Type-safe interfaces for modern development.

pip installnpm iAsync
🔔
Beta

Webhooks & Streams

Subscribe to article updates, fact-verification events, and trending topics via Server-Sent Events or custom webhook URLs.

SSEEventsRetry Queue
🧩
Stable

CMS & LMS Plugins

Pre-built integrations for WordPress, Moodle, Canvas, and Notion. Embed rich knowledge cards directly into content flows.

WordPressLTI 1.3Embeds
🤖
Beta

AI Agent Framework

Structured data export for RAG pipelines. Optimized embeddings and citation chains for LLM context windows.

RAGEmbeddingsCitations

Interactive Playground

Test live endpoints with your sandbox key. Responses include metadata, confidence scores, and source traces.

cURL
Python
JavaScript
# Search semantic knowledge graph curl -X POST https://api.aevum.dev/v3/search \ -H "Authorization: Bearer YOUR_SANDBOX_KEY" \ -H "Content-Type: application/json" \ -d '{ "query": "quantum entanglement applications", "language": "en", "depth": "extended", "include_citations": true }'
import aevum # Initialize client with async support client = aevum.AsyncClient(api_key="YOUR_SANDBOX_KEY") async def main(): response = await client.search( query="quantum entanglement applications", language="en", depth="extended" ) print(response.articles[0].title) print(f"Confidence: {response.metadata.confidence}%") aevum.run(main)
import { AevumClient } from "@aevum/sdk"; const client = new AevumClient({ apiKey: "YOUR_SANDBOX_KEY" }); async function fetchKnowledge() { const result = await client.search({ query: "quantum entanglement applications", language: "en", depth: "extended", includeCitations: true }); console.log(result.articles[0].title); console.log(`Confidence: ${result.metadata.confidence}%`); } fetchKnowledge();

Scale Your Access

Start free. Upgrade as your application grows. All tiers include full documentation and community support.

Sandbox
Free
For prototyping & personal projects
  • 100 requests / day
  • Basic semantic search
  • JSON responses only
  • Community Discord access
  • 30-day data retention
Start Building
Enterprise
Custom
For institutions & high-volume systems
  • Unlimited requests
  • Dedicated IP endpoints
  • SLA & uptime guarantee
  • On-premise deployment option
  • Custom model fine-tuning
  • 24/7 dedicated engineering
Contact Sales

Docs, SDKs & Community

}