GET
/
api
/
v0
/
customers
/
{customerId}
/
liquidation_addresses
Get all liquidation addresses for a customer
curl --request GET \
  --url https://api.devdraft.ai/api/v0/customers/{customerId}/liquidation_addresses
[
  {
    "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"

Response

200
application/json

List of liquidation addresses

The response is of type object[].