Docs/Wallet/Wallet trades
Wallet trades
GET/v1/wallet/{address}/tradesPublic
A wallet's swaps on the tokens we index, newest first, keyset-paginated (from the signer on each swap).
Path parameters
| Field | Type | Description |
|---|
addressrequired | string | Wallet address. |
Query parameters
| Field | Type | Description |
|---|
limitoptional | number | Trades per page (≤200). default 50 |
cursoroptional | string | The nextCursor from the previous page. |
networkoptional | mainnet | devnet | Network to read. Devnet returns an empty payload (with a note) until its ingestor lands. default mainnet |
Response fields
| Field | Type | Description |
|---|
trades[].time | number | Block time (unix seconds). |
trades[].side | string | buy or sell. |
trades[].baseMint | string | The token traded. |
trades[].dex | string | Venue. |
trades[].baseAmount / quoteAmount | number | Token and quote-leg sizes. |
trades[].priceUsd / volumeUsd | number | null | Execution price and size. |
trades[].signer / poolAddress | string | The wallet (= this address) and the pool. |
nextCursor | string | null | Pass as ?cursor= for the next page. |
Covers swaps on the tokens this instance indexes; the wallet's activity on un-indexed tokens is not included.