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 Keys

Using 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

PrefixEnvironmentRate limit
sk_staging_Staging1,000 req/hour
sk_live_Production10,000 req/hour

Next steps