GET
/api/v2/transfers/{transferId}Get transfer by ID
Authentication
Send your API key in the x-api-key header on every request.
Parameters
| Field | Type | Required | Description |
|---|---|---|---|
| transferId (path) | unknown | Yes | Transfer ID |
Responses
200 — OK
| Field | Type | Required | Description |
|---|---|---|---|
| Id | unknown | No | |
| UserId | unknown | No | |
| Status | TransferStatusV2 | No | |
| Amount | string | No | |
| Currency | string | No | |
| SourceType | TransferSourceTypeV2 | No | |
| DestinationType | TransferDestinationTypeV2 | No | |
| Description | string | No | |
| ExternalReferenceId | string | No | |
| CreatedAt | string | No | |
| CompletedAt | string | No | |
| UpdatedAt | string | No | |
| Metadata | object | No | |
| TransferType | string | No | Transfer type identifier (e.g., "user_to_master_transfer", "master_to_user_transfer") |
| Message | string | No | Response message for the transfer operation |
| ErrorCode | string | No | Error code if the transfer failed |
| FeeAmount | string | No | Total fee amount charged for this transfer (future implementation) |
| FeeCurrency | string | No | Currency of the fee (future implementation) |
| FeeType | TransferFeeType | No | |
| NetAmount | string | No | Net amount after fees (future implementation) |
404 — Not Found
| Field | Type | Required | Description |
|---|---|---|---|
| Message | string | No | |
| Code | string | No | |
| Status | unknown | No | |
| ValidationErrors | object | No | |
| Details | string | No |
500 — Internal Server Error
| Field | Type | Required | Description |
|---|---|---|---|
| Message | string | No | |
| Code | string | No | |
| Status | unknown | No | |
| ValidationErrors | object | No | |
| Details | string | No |
Example request
curl -X GET "https://{base_url}/api/v2/transfers/{transferId}" \
-H "x-api-key: YOUR_API_KEY"This page is generated from the live OpenAPI specification and always matches the current API.