# How-To: View Payment Transaction History

The **Transaction History** feature in the web console allows you to track all financial transactions associated with your account. This includes payment details, credits received, and a summary of your financial activity over time. You can also view your current credit balance and add credits directly from this page.

***

### Steps to View Transaction History

{% tabs %}
{% tab title="🌐Console" %}

<figure><img src="/files/4IZb6lQgiRNb8iyg5G6P" alt=""><figcaption><p>Finance Data</p></figcaption></figure>

{% stepper %}
{% step %}

### N**avigate to the Finance Page**

* Log in to the web console using your credentials.
* Go to the **Finance** page, where you will see the **Finance Dashboard**.
  {% endstep %}

{% step %}

### V**iew Payment Transactions**

* The dashboard displays a detailed list of all payment transactions.
* For each transaction, you can see:
  * **Billing Amount**: The payment amount.
  * **Charge Date**: The date of the transaction.
  * **Credits Amount**: The number of credits added to your account.
    {% endstep %}

{% step %}

### **Explore the Summary Chart**

* The dashboard also includes a **summary chart** of monthly payments over the past year.
* Use the summary chart to understand your payment patterns and plan for future credit needs.
* **Future Feature**: This chart will also show a monthly breakdown of credit usage in upcoming releases.
  {% endstep %}

{% step %}

### C**heck Your Current Credit Balance**

* The page prominently displays your account's current credit balance.
* This lets you quickly see whether additional credits are needed to maintain operations.
  {% endstep %}

{% step %}

### M**ake a New Payment**

* Use the **Add Credits** option on the dashboard to purchase additional credits.
* Payments are processed instantly, and credits are added to your account immediately.
  {% endstep %}
  {% endstepper %}
  {% endtab %}

{% tab title="🧊 Python SDK" %}

```python
import lattica_common.auth_local_state as auth
import lattica_common.app_api as agent_app

# Notice your account token expires every 30 days and it's up to you to renew it
auth.set_session_token("your_account_token_you_got_in_your_email")

transactions = agent_app.account.get_transactions_history()

```

{% 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/account-and-finance-operations/how-to-view-payment-transaction-history.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.
