Authentication

You'll need to authenticate your requests to access any of the endpoints in the Notify API. In this guide, we'll look at how authentication works.

Auth token

When establishing a connection to the api, you will need your api token — you will find it in the Dashboard under API token. Here's how to add the token to the request header using cURL:

Example request with api token

curl https://notify.dev/api/v1/me \
  -H "Authorization: {token}"

Always keep your token safe and reset it if you suspect it has been compromised.

Was this page helpful?