GET
/
customers
/
{customerID}
/
wallets
/
{bridgeWalletID}
Get a Bridge Wallet
curl --request GET \
  --url https://api.bridge.xyz/v0/customers/{customerID}/wallets/{bridgeWalletID} \
  --header 'Api-Key: <api-key>'
{
"id": "bw_123",
"chain": "solana",
"address": "9kV3ZMehKVyxfHKCcaDLye3P9HHw2MP4jtQa2gKBUmCs",
"created_at": "2023-11-22T21:31:30.515Z",
"updated_at": "2023-11-22T21:31:30.515Z",
"balances": [
{
"balance": "100.25",
"currency": "usdb",
"chain": "solana",
"contract_address": "ENL66PGy8d8j5KNqLtCcg4uidDUac5ibt45wbjH9REzB"
}
]
}

Authorizations

Api-Key
string
header
required

Path Parameters

customerID
string
required

A UUID that uniquely identifies a resource

Required string length: 1 - 42
bridgeWalletID
string
required

A UUID that uniquely identifies a resource

Required string length: 1 - 42

Response

200
application/json

A Bridge Wallet object response

The response is of type object.