API keys
Every request to the Stealthera API must include a valid API key. Keys are issued per client and are scoped to the devices assigned to your organization.
To obtain a key, contact support@stealthera.in with your organization details. You will receive:
- Your base URL —
https://api.stealthera.in
- An API key
Sending the key
Pass the key in the X-API-Key request header on every call.
A request without a valid X-API-Key returns 401 Unauthorized. Keep your key on the server side and never embed it in browser or mobile client code.
Good practice
- Store the key in a secret manager or environment variable, not in source control.
- Use a separate key per environment (staging, production).
- Request a key rotation through support if a key may have been exposed.