Skip to main content
GET
/
tokens
List tokens
curl --request GET \
  --url https://app.strix.ai/api/v1/tokens \
  --header 'Authorization: Bearer <token>'
{
  "tokens": [
    {
      "id": "<string>",
      "type": "personal",
      "name": "<string>",
      "scopes": [
        "<string>"
      ],
      "secret_prefix": "<string>",
      "expires_at": "2023-11-07T05:31:56Z",
      "last_used_at": "2023-11-07T05:31:56Z",
      "revoked_at": "2023-11-07T05:31:56Z",
      "created_at": "2023-11-07T05:31:56Z"
    }
  ]
}

Authorizations

Authorization
string
header
required

API token from Settings > API Access

Query Parameters

type
enum<string>
Available options:
personal,
service

Response

200 - application/json

List of tokens

tokens
object[]