For the complete documentation index, see llms.txt. This page is also available as Markdown.

Authentication API

Once you obtain your authentication token for the Autosky platform API calls, this token must be used in all API calls.

There are two ways to use the authentication token:

Token via URL

In this method, the token must be sent as an argument in the API calls.

https://meudominio.skyinone.net/v2/api/clients/?token=xxxxx

Token via Header

In the method of sending the token via header, it must be passed as a header in the API calls.

The header must follow this format:

Authorization: xxxxxx

Example using HTTPie:

http https://meudominio.skyinone.net/v2/api/clients/ Authorization:xxxx

Example using cURL:

curl -H "Authorization: xxxx" https://meudominio.skyinone.net/v2/api/clients/

Last updated

Was this helpful?