Authentication
In order to access the ĀLO Platform API you will need:
- URL to the ĀLO Platform API Server:
https://api.alo.ai/v1
All HTTPS requests made to the ĀLO Platform API must contain an
x-api-key
header in order to be authenticated.You also need to specify a
Content-Type
of application/json
.curl --location --request GET 'https://api.alo.ai/v1/channels' \
--header 'x-api-key: <YOUR DEVELOPER API KEY>' \
--header 'Content-Type: application/json'
Last modified 2yr ago