Lideflow-Logo

AuthenticationAuthentication

To start making calls to the Lideflow APIs, generate an API token from your Lideflow dashboard and pass it along in your API call headers.

Keep your token safe

Your token is your private key, treat it like your banking credentials. Never expose it in version control, logs, or anywhere publicly accessible. If your token is ever leaked or compromised, revoke it immediately via the dashboard.

Using your API token

To use your API token, you need to pass it along in your API call Authorization header.

curl
curl --request GET \
    --url https://api.lideflow.com/health \
    --header 'Authorization: Bearer YOUR_API_KEY'

Token expiration and revocation

Tokens expire after 90 days of inactivity. If your token isn’t used for an API call within this period, it will automatically become invalid.

If your token is compromised or no longer needed, revoke it immediately from the developer settings in your dashboard. Once revoked, all API calls using that token will fail instantly.