This REST API can be called directly with an HTTP client in your server-side language, or by using an Authsignal Server SDK.

API URL

Authentication

The Authsignal Server API uses your secret key to authenticate requests using basic authentication. You should only ever call the Authsignal Server API from your server where your secret key can be stored securely. Your secret key should never be exposed to any public client.

You can find your secret key in the API Keys section of the Authsignal Portal settings page.

Following the basic authentication protocol, the Server API expects requests to include an Authorization header containing the word Basic followed by a space and a base64-encoded username:password string. The username value should be your API secret key and the password value should be empty.

Next steps