Skip to main content
GET
/
tokens
List API tokens for your authenticated platform.
curl --request GET \
  --url https://public-test.blips.network/tokens \
  --header 'Authorization: Basic <encoded-value>'
{
  "data": [
    {
      "id": "Token:tok_2f9d7c0ab431",
      "name": "Operator management token",
      "permissions": [
        "manage"
      ],
      "accessLevel": "management",
      "issuerType": "operator_issued",
      "status": "ACTIVE",
      "revocable": false,
      "clientId": "ik_test_2c0d5fd7e1b844f2b72f78b1",
      "createdAt": "2026-04-12T08:00:00Z",
      "updatedAt": "2026-04-12T08:00:00Z",
      "revokedAt": null
    },
    {
      "id": "Token:tok_51ce4ab09d87",
      "name": "Demo readback token",
      "permissions": [
        "view"
      ],
      "accessLevel": "view_only",
      "issuerType": "platform_self_service",
      "status": "ACTIVE",
      "revocable": true,
      "clientId": "ik_test_7fa9f566c2f1467ab03d1f65",
      "createdAt": "2026-04-12T08:15:00Z",
      "updatedAt": "2026-04-12T08:15:00Z",
      "revokedAt": null
    }
  ]
}

Authorizations

Authorization
string
header
required

Integration-key Basic Auth (clientId:clientSecret) as documented in docs/public/AUTHENTICATION.md.

Response

API token list returned. Includes the operator-issued root manage token plus any platform-created tokens with secrets redacted.

data
object[]
required

API tokens visible on this platform. Includes the operator-issued root manage token plus any platform-created tokens.