Authentication
Authentication with the Aerobotics API is simple - it uses API Access Tokens. In order to view your Access Token, please make sure you are logged in. This token will be available only if you have been granted access to our Enterprise API.
Access Tokens need to be passed using an auth header with the Bearer identifier, this authenticates your user account with the API. If you want to go deeper on how the Authorization:Bearer header works please check out the full spec here.
Example:
$ curl \
-s https://api.aerobotics.com/ \
-H 'Authorization:Bearer <<apiKey>>' \
-H 'Accept:application/json'import requests
headers = {
'Authorization': 'Bearer <<apiKey>>',
'Accept': 'application/json'
}
r = requests.get('https://api.aerobotics.com/', headers=headers)
print(r.json())
Never give your Access Token to a third partyYour Access Token can give access to your private Aerobotics data and should be treated like a password and stored securely.
If you would like to generate a new Access Token, please email [email protected].
Updated 10 months ago
