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

# Get Account History

> Read paginated transaction history for a Solana wallet.

Use `account`, `limit`, and `offset` for Android-compatible pagination:

```typescript theme={null}
const history = await gasStation.getHistory({
  account: 'WALLET_ADDRESS',
  limit: 20,
  offset: 0,
})

console.log(history)
```

For compatibility with earlier TypeScript integrations, the client also accepts `walletAddress`, `page`, and `pageSize`:

```typescript theme={null}
const history = await gasStation.getHistory({
  walletAddress: 'WALLET_ADDRESS',
  page: 1,
  pageSize: 20,
})
```

<Note>
  The history response follows the current relay API payload. Treat unknown fields as forward-compatible and guard optional values before rendering them.
</Note>
