URnetwork
Copyright 2024 BringYour, Inc.
Get a list of wallets associated with your network
A list of wallets associated with your network
const response = await fetch('https://api.bringyour.com/account/wallets', { method: 'GET', headers: { "Authorization": "Bearer <token>" }, }); const data = await response.json();
{ "wallets": [ { "wallet_id": "text", "circle_wallet_id": "text", "network_id": "text", "wallet_type": "circle_uc", "blockchain": "SOL", "wallet_address": "text", "active": false, "default_token_type": "USDC", "create_time": "text" } ] }