> ## Documentation Index
> Fetch the complete documentation index at: https://docs.base.org/llms.txt
> Use this file to discover all available pages before exploring further.

# View Transaction History

> Browse past transactions, filter by asset, and paginate through your onchain history using Base MCP

## What you can ask

```text theme={null}
Show my recent transactions on Base
```

```text theme={null}
Show my last 10 USDC transactions
```

```text theme={null}
Show the next page of my Base transactions
```

```text theme={null}
Show my Polygon transaction history
```

## How it works

`get_transaction_history` returns transactions in reverse chronological order (newest first) for your Base Account or an in-session agent wallet. Third-party wallet addresses are rejected.

| Parameter | What it does                                                                                                 |
| --------- | ------------------------------------------------------------------------------------------------------------ |
| `address` | Optional wallet address to query — must be your Base Account or one of your agent wallets                    |
| `chain`   | Required network to query, e.g. `base`, `arbitrum`, `ethereum`, `optimism`, `polygon`, `bsc`, or `avalanche` |
| `asset`   | Filter to a specific token (e.g. `USDC`, `ETH`)                                                              |
| `limit`   | Number of transactions per page (1–200, default 50)                                                          |
| `cursor`  | Pagination cursor from the previous response's `nextCursor`                                                  |

<Note>
  Date range filtering is not supported — paginate through results to find transactions from a specific period.
</Note>

## Pagination

When `hasMore` is `true` in the response, more transactions exist. Ask your assistant to load more:

```text theme={null}
Show me the next page of transactions
```

Your assistant will use the `nextCursor` value from the previous response automatically.

## Related guides

<CardGroup cols={2}>
  <Card title="Check balance" icon="wallet" href="/agents/guides/check-balance">
    View current balances alongside history.
  </Card>

  <Card title="Send tokens" icon="paper-plane" href="/agents/guides/send-tokens">
    Send tokens from your connected wallet.
  </Card>
</CardGroup>
