The Dutchie Point of Sale API uses API Key Authentication with HTTP Basic Auth to secure all API requests. This ensures that only authorized applications can access your business data.
API keys are provided by Dutchie Support through our official support portal. Each key is vendor-specific and scoped to appropriate permissions.
Contact Dutchie Support with details about your integration needs and they will guide you through the API key request process.
Once approved, you'll receive separate API keys for each vendor relationship. Keys are permission-scoped based on your specific integration needs.
API keys are granted specific permission scopes that control which endpoints and data you can access. Understanding these scopes is crucial for planning your integration. See the Permissions Guide for detailed information about all available scopes and their endpoints.
When requesting API keys, be specific about:
403 Forbidden responses, your API key may not have the required permissions. Contact Dutchie Support to request additional scopes.
Use your API key as the username in HTTP Basic Authentication, leaving the password empty.
Authorization: Basic {base64_encoded_api_key}
# If your API key is: abc123xyz
# Encode "abc123xyz:" (note the colon)
# Result: YWJjMTIzeHl6Og==
Authorization: Basic YWJjMTIzeHl6Og==
Use the /whoami endpoint to verify your API key is working and see which location it accesses:
curl -X GET "https://api.pos.dutchie.com/whoami" \
-H "Authorization: Basic {your_encoded_key}" \
-H "Accept: application/json"