This document is the contract you, the client, implement against. It covers only the endpoints your end-user app will call:
https://<api-host>
Provided to you separately./v1/...Every request MUST include the header:
X-API-Key: <YOUR_API_KEY>
| Header state | Response |
|---|---|
| Missing | 401 MISSING_API_KEY |
| Empty / whitespace only | 401 MISSING_API_KEY |
| Wrong value | 401 INVALID_API_KEY |
Never log the key. Never embed it in client-side code shipped to end users. Proxy all requests through your backend.