List Pi wallet payment history
get_account_paymentsList payments sent to or from a Pi wallet address, newest first, to check transaction history, verify incoming payments, or track outgoing activity.
Instructions
List payments sent to or from a Pi wallet address, newest first. Call this to answer questions about an address's transaction history — whether a payment arrived, who funded an account, or what it recently sent. Covers payments, account creations, path payments, and account merges. Results are paginated: pass the returned next_cursor back as cursor for the next page. Reads public ledger data only.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | How many records to return (1-200). Defaults to 10. | |
| order | No | `desc` returns newest records first (the default); `asc` returns oldest first. | desc |
| cursor | No | Paging cursor from a previous call's `next_cursor`. Omit for the first page. | |
| address | Yes | Pi wallet address (Stellar public key, 56 characters, starts with G) |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| count | Yes | ||
| network | Yes | ||
| payments | Yes | ||
| account_id | Yes | ||
| next_cursor | No |