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