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.
Get up and running in under 3 minutes
Sign up for free and generate your API key from the Developer Dashboard.
Use our official package for Python, JavaScript, Go, or PHP to simplify requests.
Query articles, search the knowledge graph, or retrieve entity metadata instantly.
Type-safe, well-documented, and continuously maintained
See how to query the API and parse responses
# 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"] });
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 |
Generate your API key in seconds and explore the documentation.