Skip to main content
Requests to our API are authenticated using Basic Auth with the username and password provided setting up the integration.
HeaderValue
AuthorizationBasic base64(username:password)

Example

# Username	: test
# Password	: secret
# To base64	: base64(test:secret) = dGVzdDpzZWNyZXQ=

curl --request GET \
  --url https://api.algure.com/v1/countings \
  --header 'Authorization: Basic dGVzdDpzZWNyZXQ=' \
  --header 'Content-Type: application/json'