| Header | Value |
|---|---|
Authorization | Basic base64(username:password) |
Learn how to authenticate requests to the Algure API
| Header | Value |
|---|---|
Authorization | Basic base64(username:password) |
# 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'
Was this page helpful?