Authentication

How to authenticate with the Service Area WIZARD API using Bearer tokens.

Authentication

All API requests require authentication using a Bearer token.

Creating an API Token

  1. Log in to your account at app.serviceareawizard.com
  2. Navigate to your API token management page
  3. Click Create New Token
  4. Copy the generated token and store it securely

Using Your Token

Include the token in the Authorization header of every request:

Authorization: Bearer YOUR_API_TOKEN

Example

curl -X POST https://app.serviceareawizard.com/api/check \
  -H "Authorization: Bearer YOUR_API_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"country": "United Kingdom", "radius": 30, "origin": "SW1A 1AA", "destination": "EC1A 1BB"}'
Keep your API token secret. Never expose it in client-side code or public repositories.