Skip to main content

Authentication

Learn how to authenticate with the SuperDispatch API.

API Keys

All API requests require authentication using an API key. You can obtain your API key by contacting SuperDispatch support.

Using Your API Key

Include your API key in the request headers:

curl -H "Authorization: Bearer YOUR_API_KEY" \
https://api.superdispatch.com/v1/endpoint

Security Best Practices

  • Never share your API key: Keep your credentials secure
  • Use HTTPS: All API calls must be made over HTTPS
  • Rotate keys regularly: Update your API keys periodically
  • Environment variables: Store keys in environment variables, not in code

Rate Limiting

API requests are rate-limited to ensure fair usage:

  • Standard: 1000 requests per hour
  • Premium: 5000 requests per hour

When you exceed the rate limit, you'll receive a 429 Too Many Requests response.