client.Transfers
Available Methods
| Method | HTTP Equivalent | Description |
|---|---|---|
ListTransfers | GET /transfer/transfers | List transfers with optional filters |
GetTransfer | GET /transfer/transfers/{id} | Get a single transfer by ID |
ListTransfers
Returns an iterator over all transfers matching the given filters.Request Parameters
| Parameter | Type | Description |
|---|---|---|
profile_id | string | Filter by profile ID |
limit | int | Number of items per page (default 50) |
type | string | Filter by transfer type (DEPOSIT, WITHDRAWAL, etc.) |
status | string | Filter by status (PENDING, COMPLETED, FAILED) |
GetTransfer
Fetch a single transfer by its ID.For the full REST API documentation, see the Transfers API Reference.