Authentication is made with a key that you will have to add to every call you make to our API. This parameter is always required. We'll return an error if the key is either missing or invalid.

Your API key is what identifies your account, so make sure to keep it secret! You can find your API key by going into any Workspace > Settings > API Key tab.

Basic Authentication

We use the API Key as the "username" via Basic Authentication.

curl https://api.mailstand.com/ \
  -u key_abc123efg456hij789:

Postman Example

Here's an example of how the API key is used within Postman.

1274