Skip to main content
POST
/
v1
/
virtual-accounts
/
{virtual_account_id}
/
liquidation-address
Create a liquidation address
curl --request POST \
  --url https://api.balampay.com/v1/virtual-accounts/{virtual_account_id}/liquidation-address \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --header 'Idempotency-Key: <idempotency-key>' \
  --header 'X-Api-Version: <x-api-version>' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "network": "polygon",
  "token": "USDC",
  "recipient": {
    "type": "individual",
    "first_name": "Jane",
    "last_name": "Doe",
    "email": "jane.doe@example.com",
    "account": {
      "account_type": "ACH",
      "routing_number": "021000021",
      "account_number": "1234567890",
      "type": "checking",
      "doc_type": "SSN",
      "doc_number": "123-45-6789",
      "bank_name": "Example Bank",
      "bank_address": "123 Market St, New York, NY"
    }
  },
  "markup": {
    "fixed": "1.50",
    "percentage": "0.25",
    "fx": "0.10"
  }
}
'
{
  "code": "<string>",
  "message": "<string>",
  "errors": [
    {
      "field": "<string>",
      "message": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Access token from POST /auth (the data.access_token value).

x-api-key
string
header
required

API key issued by Kira. Required on every request, including /auth.

Headers

X-Api-Version
string
required
Example:

"2026-04-14"

Idempotency-Key
string
required
Example:

"3fa85f64-5717-4562-b3fc-2c963f66afa6"

Path Parameters

virtual_account_id
string<uuid>
required

Virtual account UUID.

Body

application/json

The body is of type object.

Response

Success.