> For the complete documentation index, see [llms.txt](https://platformdocs.lattica.ai/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://platformdocs.lattica.ai/how-to-guides/account-and-finance-operations/how-to-view-payment-transaction-history.md).

# 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 %}

***
