Get Transfer
Retrieve the full details of a transfer by its ID, including current status, source and destination details, and fee breakdown.Endpoint
Request
Response
Response Fields
| Field | Type | Description |
|---|---|---|
id | string | Unique transfer identifier. |
quote_id | string | Associated quote. |
status | string | Current status: pending, awaiting_deposit, processing, settling, completed, failed. |
source | object | Source details including currency, network/payment rail, and resolved amount. |
destination | object | Destination details including currency, network/account, and resolved amount. |
fees | object | Platform and network fee breakdown. |
exchange_rate | string | Applied conversion rate. |
payment_instructions | object or null | Bank deposit instructions (present only for fiat-source transfers). |
metadata | object | Your metadata. |
created_at | string | ISO 8601 creation timestamp. |
completed_at | string or null | ISO 8601 completion timestamp. |
Notes
- Check the
statusfield to determine the current state of the transfer. - Use the
idto track the transaction in your system. - Once status becomes
completed, funds have been delivered to the destination. - For fiat-source transfers in
awaiting_depositstatus, use thepayment_instructionsto complete the bank deposit.