⚡ Estimated setup: <5 minutes
Get Started with Aevum Encyclopedia
Integrate verified, AI-enhanced knowledge into your applications, research tools, or learning platforms in just a few steps.
Step by Step
Setup Flow
1
Create Account & Verify
Sign up at aevum.encyclopedia/register and verify your email to unlock API access.
2
Generate API Key
Navigate to your Dashboard → Settings → API Keys. Click Generate Key and securely store it. Keys never expire.
3
Install the SDK
Add the official package to your project. Supports Node.js, Python, and browser environments via CDN.
4
Run First Query
Initialize the client with your key and make your first request. You'll receive structured, verified data instantly.
Integration
Your First Request
import { AevumClient } from '@aevum/sdk'; // Initialize with your API key from Dashboard const aevum = new AevumClient({ apiKey: 'AE_live_your_api_key_here' }); // Query the knowledge graph const result = await aevum.search({ query: 'quantum entanglement applications', depth: 'comprehensive', format: 'structured' }); console.log(result.summary); // Returns verified, cross-referenced knowledge
from aevum import AevumClient # Initialize with your API key from Dashboard aevum = AevumClient( api_key="AE_live_your_api_key_here" ) # Query the knowledge graphresult = aevum.search( query="quantum entanglement applications", depth="comprehensive", format="structured" ) print(result["summary"]) # Returns verified, cross-referenced knowledge
Support & Resources
Need More Guidance?
Common Questions
FAQ
Is there a free tier for development?
Yes. The sandbox tier includes 1,000 API calls/month, full documentation access, and community support. Perfect for prototyping and testing.
How is content verified before being returned?
Every response passes through our multi-layer verification engine: cross-source validation, expert peer-review tags, and AI fact-checking with traceable citations.
Can I self-host or use offline datasets?
Enterprise plans include downloadable knowledge dumps and on-premises deployment options. Contact sales for custom licensing and air-gapped setups.