API Quickstart
Use this path when your caller is a backend system integrating through the API chain.
Typical Sequence
- provision an API key and secret
- confirm the key's allowed scopes
- sign the request with HMAC
- call
/api/v1/**endpoints only - handle scope and permission failures explicitly
Required Concepts
Read these before sending any API request:
Critical Rule
Not every documented interface is API-key accessible. Only endpoints exposed on the API chain with declared scope support should be called this way.
Common 403 Causes
- the endpoint belongs to
/web/v1/**, not/api/v1/** - the endpoint has no API scope declaration
- the API key does not have the required scope
- the signature or timestamp handling is invalid
Next Step
If your integration is server-to-server, go to the domain guide that matches your business capability and confirm whether that domain supports API chain calls.