Authentication

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

Bearer Token

The way to authenticate with the typeauth API is by using Bearer Token. When establishing a connection, you will need your access token — you will find it in the typeauth dashboard under API settings. Here's how to add the token to the request header using cURL:

Example request with bearer token

curl https://api.typeauth.com/:accountID/keys \
  -H "Authorization: Bearer {token}"

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

Using an SDK

Coming Soon.

Was this page helpful?