Empire Gateway docs

Getting started, API reference, integration recipes.

Quickstart (5 min)

  1. Sign up at /contact/ and get your API key from the dashboard.
  2. Install — no SDK required, plain HTTP works. Or use OpenAI-compatible SDKs where applicable.
  3. Call the API:
curl -X POST https://api.empiregateway.eliteaiempire.com/v1/invoke \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"input": "hello"}'

Authentication

Bearer token in the Authorization header. Tokens minted from your dashboard.

Rate limits

Free: 1k req/mo. Indie: 100k. Pro: 1M. Enterprise: SLA-negotiated.

Errors

Standard HTTP codes. JSON error body: {"error": {"code": "...", "message": "..."}}.

Webhooks

Configure webhook receivers from the dashboard. We sign with HMAC-SHA256.

SDKs

Direct HTTP works everywhere. For convenience:

Until SDKs ship: use the OpenAPI spec at /openapi.json with your generator of choice.

Support

Drop us a line at /contact/. We respond within 1 business day.