Authentication

Every API call will contain a Bearer token header. After you've entered the bearer token in LeadExporter.io, your endpoints should only process requests that contain that token.

Authorization example

GET https://api.yourdomain.com/v1/authorization-example

This is just an example of a request, the header shown below should be included in every API call.

Headers

NameTypeDescription

Token

string

Bearer token

{
    "success": true
}

The bearer token can be chosen by you and can be up to 265 characters.

It is also advised to include rate limiting for unauthorized requests in your endpoints: eg. after 3 API calls with the wrong token, don't accept any more requests from that IP for the next minute.

Last updated