๐Ÿ”‘ Configuration
Give your key a descriptive name for easy identification.
Leave empty to allow access from any IP address.

Configure your key settings and click generate.
Your secure key will appear here.

โš ๏ธ Important: This key will only be displayed once. Save it securely in your environment variables or secret manager.

Created: -

Scope: -

Expires: -

๐Ÿ›ก๏ธ 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 }
}
โœ… Copied to clipboard!