Security First

Authentication

The Aetheria API uses API keys to authenticate requests. You can manage your secrets in the Aetheria Developer Dashboard.

Protect your secrets

Your API keys carry full access to your business data. Never share them in publicly accessible areas like GitHub, client-side code, or mobile apps.

Bearer Auth

Authentication is performed via HTTP Bearer Auth. Provide your key in the Authorization header.

curl -X GET https://api.aetheria.solutions/v1/tenants \
-H "Authorization: Bearer ae_live_xxxxxxxxxxxxxxxxx" \
-H "Content-Type: application/json"

Environment Keys

Test Sandbox

Prefix ae_test_. Use for development. Isolated data, no billing impact.

Production

Prefix ae_live_. Connects to real business operations and billing.

Next: Core API Reference