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

# Payments

> Payments operations on the STX Python SDK.

**1 operations.**

## `my_deposit_and_withdrawal_history`

*Query — returns `list[TransactionHistory]`.*

<sub>GraphQL field: `myDepositAndWithdrawalHistory`</sub>

List of all deposits and withdrawals for account

**Parameters**

| Name         | Type                            | Required | Description |
| ------------ | ------------------------------- | -------- | ----------- |
| `pagination` | `Pagination` (dict — see below) | No       | —           |

`pagination` accepts a dict with these keys (pass as `params={"pagination": {...}}`):

| Field   | Type  | Required | Description                                                          |
| ------- | ----- | -------- | -------------------------------------------------------------------- |
| `page`  | `int` | Yes      | The page of result where each page has `limit` values.  Integer >= 0 |
| `limit` | `int` | Yes      | The limit of values per page.  Integer value greater than 0.         |

**Example**

```python theme={null}
result = client.my_deposit_and_withdrawal_history(params={"pagination": ...}, selections=Selection(...))
```

***
