Generate API Key
Create and manage secure API keys to access Aevum Encyclopedia's knowledge endpoints, search APIs, and data exports.
๐ Configuration
Configure your key settings and click generate.
Your secure key will appear here.
๐ก๏ธ Security Best Practices
Never Commit Keys
Do not store API keys in version control, public repositories, or frontend code.
Rotate Regularly
Revoke and regenerate keys every 90 days or immediately if compromised.
Restrict IP Access
Limit key usage to known server IPs to reduce exposure to unauthorized access.
Use Environment Variables
Store keys in `.env` files or cloud secret managers (AWS Secrets Manager, HashiCorp Vault).
๐ป Quick Start: Making Your First Request
# Example: Search for articles using cURL
curl -X GET "https://api.aevumencyclopedia.com/v1/search?q=quantum+computing" \
-H "Authorization: Bearer YOUR_API_KEY_HERE" \
-H "Content-Type: application/json"
# Response
{
"status": "success",
"results": [...],
"meta": { "page": 1, "total": 142 }
}