Skip to main content
GET
/
api
/
v2
/
virtual-accounts
/
{id}
/
withdrawals
Get withdrawals from virtual account
curl --request GET \
  --url https://sandbox.killb.app/api/v2/virtual-accounts/{id}/withdrawals \
  --header 'Authorization: Bearer <token>'
{
  "withdrawals": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "virtualAccountId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "customerId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "userId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "amount": 123,
      "currency": "<string>",
      "network": "<string>",
      "address": "<string>",
      "status": "PENDING",
      "metadata": {},
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z",
      "transferId": "<string>",
      "transferProof": "<string>"
    }
  ],
  "total": 123,
  "page": 123,
  "limit": 123,
  "totalPages": 123
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Path Parameters

id
string
required

Query Parameters

status
enum<string>

Withdrawal status filter

Available options:
PENDING,
PROCESSING,
COMPLETED,
FAILED,
REJECTED
startDate
string

Filter by start date

Example:

"2025-01-01"

endDate
string

Filter by end date

Example:

"2025-12-31"

page
number
default:1

Page number

Required range: x >= 1
limit
number
default:10

Items per page

Required range: x >= 1

Response

withdrawals
object[]
required
total
number
required
page
number
required
limit
number
required
totalPages
number
required