GET
/
customers
/
{customerID}
/
liquidation_addresses
/
{liquidationAddressID}
Get a Liquidation Address
curl --request GET \
  --url https://api.bridge.xyz/v0/customers/{customerID}/liquidation_addresses/{liquidationAddressID} \
  --header 'Api-Key: <api-key>'
{
"id": "la_123",
"chain": "ethereum",
"customer_id": "cust_123",
"external_account_id": "ext_123",
"address": "0x4d0280da2f2fDA5103914bCc5aad114743152A9c",
"currency": "usdc",
"destination_payment_rail": "wire",
"destination_currency": "usd",
"destination_wire_message": "a wire message",
"state": "active",
"created_at": "2023-11-22T21:31:30.515Z",
"updated_at": "2023-11-22T21:31:30.515Z"
}

Authorizations

Api-Key
string
header
required

Path Parameters

customerID
string
required

A UUID that uniquely identifies a resource

Required string length: 1 - 42
liquidationAddressID
string
required

A UUID that uniquely identifies a resource

Required string length: 1 - 42

Response

200
application/json

A Liquidation Address object response

The response is of type object.