# How-To: See List of Tokens

The **Tokens** page in the web console provides a comprehensive view of all User Access Tokens created under your account. This page allows you to monitor token details, find specific tokens using filters or sorting options, and manage your tokens efficiently.

***

### Understanding the Tokens Parameters

* **Token Name**: The descriptive name of the token.
* **Creation Date**: The date and time when the token was created.
* **Expiration Date**: The token's expiration date
* **Status**: Indicates whether the token is **active or** **canceled**
* **Model Assignment**: Specifies the AI model the token is assigned to. If unassigned, this field is blank.
* **Evaluation Key**: Indicates whether an **Evaluation Key (EVK)** has been generated for the token and assigned model. EVKs are required for encrypted queries.

***

### Parameters that may be modified

| Field     | Type | Required | Description                                                               | Allowed Values                    |
| --------- | ---- | -------- | ------------------------------------------------------------------------- | --------------------------------- |
| status    | str  | No       | Filter tokens by their current status.                                    | `ACTIVE`, `CANCELED`, `SUSPENDED` |
| modelId   | str  | No       | Filter tokens associated with a specific model ID.                        | Valid `modelId` UUID string       |
| issueDate | int  | No       | Filter tokens issued on a specific date (Unix timestamp in milliseconds). | Valid Unix timestamp (BigInt)     |

***

{% tabs %}
{% tab title="🌐Console" %}
The **Tokens** page displays a table with detailed information about each token.&#x20;

<figure><img src="/files/4anR9ei6iAELt6LoxdSB" alt=""><figcaption><p>Token List</p></figcaption></figure>

### Accessing the Tokens Page

1. **Log In**\
   Log in to the LatticaAI web console using your credentials.
2. **Navigate to the Tokens Page**\
   From the main menu, select **Tokens** to access the list of all tokens associated with your account.

The **Tokens** page offers tools to filter and sort the token(s) you need
{% endtab %}

{% tab title="🧊 Python SDK" %}
The LatticaAI SDK provides an API call to retrieve the list of tokens associated with your account. This allows customers to implement custom filtering and sorting logic in their own systems.

Use the following code snippet to fetch the tokens list:

```python
# List Tokens

import LatticaManagement

# Authenticate
lattica = LatticaManagement("your_license_from_lattica_console")

# Choose a model
model_id = lattica.list_models()[0].model_id

# List Tokens
tokens = lattica.list_tokens(status="ACTIVE", model_id=model_id)
```

{% endtab %}
{% endtabs %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://platformdocs.lattica.ai/how-to-guides/access-control/how-to-see-list-of-tokens.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
