GET
/
api
/
v0
/
customers
/
{customerId}
/
liquidation_addresses
/
{liquidationAddressId}
Get a specific liquidation address
curl --request GET \
  --url https://api.devdraft.ai/api/v0/customers/{customerId}/liquidation_addresses/{liquidationAddressId}
{
  "id": "la_generated_id_123",
  "state": "active",
  "customer_id": "cust_123",
  "chain": "ethereum",
  "currency": "usdc",
  "address": "0x4d0280da2f2fDA5103914bCc5aad114743152A9c",
  "external_account_id": "<string>",
  "prefunded_account_id": "<string>",
  "bridge_wallet_id": "<string>",
  "destination_payment_rail": "<string>",
  "destination_currency": "<string>",
  "custom_developer_fee_percent": "<string>",
  "created_at": "<string>",
  "updated_at": "<string>"
}

Path Parameters

customerId
string
required

Unique identifier for the customer

Example:

"cust_123"

liquidationAddressId
string
required

Unique identifier for the liquidation address

Example:

"la_generated_id_123"

Response

200
application/json

Liquidation address details

The response is of type object.