Skip to content

Authentication

The ArcSite API uses API tokens to authenticate requests. You can view and manage your API tokens by visiting the ArcSite web UI.

Authentication to the API is performed via the HTTP Authorization header:

Terminal window
curl "https://api.arcsite.com/v1/projects" \
-H "Authorization: Bearer your_api_token_here"

All API requests must be made over HTTPS. Calls made over plain HTTP will fail, and requests without authentication will also fail.

The header takes the following form:

Authorization: Bearer your_api_token_here