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' \
  --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

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

The body is of type object.

Response

201
application/json

Bridge Wallet created

The response is of type object.