# List

Launch stage: GA

`GET /api/2.0/token/list`

Lists all the valid tokens for a user-workspace pair.

API scopes: authentication

## Returns

Returns a list of PublicTokenInfo objects.

## Response

```json
{
  "token_infos": [
    {
      "token_id": "string",
      "creation_time": 0,
      "expiry_time": 0,
      "comment": "string",
      "scopes": [
        "string"
      ]
    }
  ]
}
```

