Skip to main content
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>'
{
  "chain": "base",
  "id": "<string>",
  "address": "<string>",
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z",
  "balances": [
    {
      "balance": "<string>",
      "currency": "usdb",
      "chain": "base",
      "contract_address": "<string>"
    }
  ]
}

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

A Bridge Wallet object response

chain
enum<string>
required

The chain of the Bridge Wallet

Available options:
base,
ethereum,
solana
id
string

A UUID that uniquely identifies a resource

Required string length: 1 - 42
address
string

The blockchain address of the Bridge Wallet

created_at
string<date-time>

Time of creation of the Bridge Wallet

updated_at
string<date-time>

Time of most recent update of the Bridge Wallet

balances
object[]