[Get] Cross-Chain Transfer

Retrieve details of a specific Cross-Chain Transfer

get

/v0/customers/{customer_id}/cross-chain-transfer/{transfer_id}

Path parameters
customer_idstring · uuidrequired

The unique identifier of the customer

transfer_idstring · uuidrequired

The unique identifier of the cross-chain transfer

Header parameters
Authorizationstringrequired

Token for authentication

Responses
curl -L \
  --url 'https://api.getfractal.xyz/v0/customers/{customer_id}/cross-chain-transfer/{transfer_id}' \
  --header 'Authorization: text'
{
  "id": "123e4567-e89b-12d3-a456-426614174000",
  "status": "pending",
  "amount": "text",
  "source_network": "polygon",
  "source_token": "usdc",
  "source_address": "text",
  "destination_network": "polygon",
  "destination_token": "usdc",
  "destination_address": "text",
  "quote": {
    "deposit_token": "usdc",
    "deposit_address": "text",
    "deposit_network": "polygon",
    "deposit_amount": "text",
    "fee_amount": "text"
  }
}

Last updated