List wallets
cURL
cURL
Get a single wallet
cURL
List deposits
cURL
Activity feed
The activity endpoint provides a unified, reverse-chronological feed of deposits and withdrawals for a wallet. This is useful for building transaction history views.cURL
| Param | Description |
|---|---|
limit | Max items per page (default 20, max 100) |
cursor | Opaque cursor from nextCursor for pagination |
type | Filter by activity type: deposit or withdrawal |
| Field | Description |
|---|---|
activity[].id | Unique ID (matches the underlying deposit or withdrawal ID) |
activity[].type | "deposit" or "withdrawal" |
activity[].amountUsd | Amount as a fixed-precision decimal string (6 decimal places) |
activity[].timestamp | ISO-8601 timestamp of when the activity occurred |
activity[].detail | Type-specific metadata (see below) |
nextCursor | Opaque cursor for the next page, or null |
hasMore | Whether more items exist beyond this page |
depositId, chain, txHash
Withdrawal detail fields: withdrawalId, destinationChain, status
List withdrawals
Filter by status to monitor in-flight withdrawals:cURL