API Keys
Generate API keys for your integration. Keys start with sk_staging_ and authenticate against the staging API.
API key management has moved to Console.
Manage API KeysUsing your key
Pass your API key as a Bearer token on every request:
curl https://sally-api-staging.appshore.in/api/v1/drivers \
-H "Authorization: Bearer sk_staging_your_key_here"
Keys are scoped to your tenant and carry full API permissions. Store them in environment variables — never commit them to source control.
# .env
SALLY_API_KEY=sk_staging_your_key_here
Key types
| Prefix | Environment | Rate limit |
|---|---|---|
sk_staging_ | Staging | 1,000 req/hour |
sk_live_ | Production | 10,000 req/hour |
Next steps
- Quickstart — Make your first API call
- Authentication — How auth works in detail
- API Keys Reference — Create, list, and revoke keys via API