API Tokens

API Tokens are used to authenticate client applications to the API

Overview

API Tokens allow your applications, scripts, and automation to interact with the Stacuity API without requiring a user login.

Navigate to Access Control → API Tokens.

The list shows each token's Name, Enabled status, and Created (UTC) timestamp.

Creating an API Token

  1. Click Create a Token.
  2. Enter a Name to identify the token.
  3. The Enabled toggle is on by default. Leave it enabled unless you want to create the token in a disabled state.
  4. Click Create.

After creation, the portal displays the token value once. Copy it immediately using the Copy to Clipboard button. It is not shown again.

The portal also provides a curl command you can use to test the token immediately:

curl -X GET "https://api.stacuity.com/api/v1/apitokens/verify" -H "Authorization: Bearer <your-token>" -H "Content-Type:application/json"

What’s Next