POST
/
customers
/
{customerID}
/
wallets
Create a Bridge Wallet
curl --request POST \
  --url https://api.bridge.xyz/v0/customers/{customerID}/wallets \
  --header 'Api-Key: <api-key>' \
  --header 'Content-Type: application/json' \
  --header 'Idempotency-Key: <idempotency-key>' \
  --data '{
  "chain": "base"
}'
{
"id": "bw_123",
"chain": "solana",
"address": "9kV3ZMehKVyxfHKCcaDLye3P9HHw2MP4jtQa2gKBUmCs",
"created_at": "2023-11-22T21:31:30.515Z",
"updated_at": "2023-11-22T21:31:30.515Z"
}

Authorizations

Api-Key
string
header
required

Headers

Idempotency-Key
string
required

Path Parameters

customerID
string
required

A UUID that uniquely identifies a resource

Required string length: 1 - 42

Body

application/json

Bridge Wallet to be created

chain
enum<string>
required
Available options:
base,
solana

Response

Bridge Wallet created

chain
enum<string>
required
Available options:
base,
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