Getting your API Keys

You can find your API keys in your Mulberry dashboard by navigating to settings where you will see your Private and Public tokens. Each API call will require one of these tokens to ensure a secure connection.

Authentication Method

Authentication to the Mulberry API is performed via Bearer Authentication (also called token authentication). When making API requests, you will be passing your private token or public token in the Authorization header along with the payload. Which token is used will depend on if PII is passed in the call - never expose your private token on the front end of your website.

All API requests must be made over HTTPS. Calls made over plain HTTP will fail. You must authenticate for all requests.

HTTP method: GET

Authentication: Private Bearer Token

Staging Endpoint: https://partner-staging.getmulberry.com/api/verify-auth

Production Endpoint: https://partner.getmulberry.com/api/verify-auth

curl -X GET https://partner-staging.getmulberry.com/api/verify-auth
-H "Content-Type:application/json"
-H "Authorization: Bearer 01234567-89ab-cdef-0123-456789abcdef"