Authentication

Endgrate uses API keys for authentication. Visit the settings page of your dashboard to obtain the API key for your organization.

Endgrate authenticates via the HTTP bearer authentication scheme. Include your API key in the HTTP Authorization header as follows:

Authorization: Bearer API_KEY

For example, when initiating a request:

curl --request GET \
     --url 'https://endgrate.com/api/{endpoint}' \
     --header 'Authorization: Bearer abcde12345'

What’s Next