Get Internal Transfer

Get details of individual internal transfers by client_reference_id. ( Private ๐Ÿ”’ )

Retrieve details of a single transfer using this endpoint. Please note that this is a Private ๐Ÿ”’ route which means it needs to be authorised by the account initiating this request.

Note: You will need to include the JWT Auth token to request headers to access this endpoint. To get the JWT Auth Token, refer the login section of the documentation.

Endpoint

GET /sapi/v1/internal_transfers/v2/{client_reference_id}

Example

{baseurl}/sapi/v1/internal_transfers/v2/23157052/

Response

{
    "status": "success",
    "message": "Fetched internal transfer successfully",
    "payload": {
        "client_reference_id": "18713401936769560",
        "amount": "1",
        "currency": "usdc",
        "from_address": "0xF",
        "destination_address": "0x4",
        "status": "success",
        "created_at": "2023-07-10T11:36:57.820203Z",
        "updated_at": "2023-07-10T11:51:54.937498Z"
    }
}

Last updated