Skip to main content

Get your API key

Head over your account settings to generate a Personal API key. Please note that only the owner and admin roles with “Public API” permissions can generate a key and use this API. You should then use this API key as a Bearer Token:

Testing communication

Once you have your key, you can run the following command in a shell to ensure that you’re all set:
curl --request GET \
  --url https://api.siit.io/ping \
  --header 'Authorization: Bearer <YOUR_API_KEY>'
If the token is valid, the result should be:
{"result":"pong"}
I