Last updated 1 month ago
The unique identifier of the customer
Successful retrieval of all permanent route addresses
const response = await fetch('https://api.getfractal.xyz/v0/customers/{customer_id}/cross-chain-transfer/permanent-route-address/list', { method: 'GET', headers: { "Authorization": "text" }, }); const data = await response.json();
{ "items": [ { "permanent_route_address_id": "123e4567-e89b-12d3-a456-426614174000", "route_chain_addresses": { "ethereum": { "address": "text" }, "base": { "address": "text" }, "polygon": { "address": "text" }, "tron": { "address": "text" }, "solana": { "address": "text" } }, "route_destination": { "network": "text", "token": "usdc", "address": "text" } } ] }