---
title: "Fetch Virtual Account Transactions"
method: GET
path: "/v1/virtual-account/{virtual_account_id}/transactions"
tags: ["Virtual Accounts"]
---

# Fetch Virtual Account Transactions

`GET /v1/virtual-account/{virtual_account_id}/transactions`

Retrieve a paginated list of all transactions for a specific virtual account

## Path parameters

- `virtual_account_id` string, uuid, required

## Query parameters

- `page` integer
- `limit` integer

## Response `200`

Virtual account transactions retrieved successfully

- object
  - `data` object, required
    - `transactions` object[]
      - `id` string, uuid
      - `transaction_type` string
      - `beneficiary_id` string, uuid, nullable
      - `hash` string, nullable
      - `transaction_ref_id` string, uuid
      - `from_amount` number
      - `payout_amount` number
      - `processing_amount` number, nullable
      - `status` string
      - `fx_rate` number
      - `developer_fee` number
      - `developer_fee_percentage` number
      - `developer_fee_fixed` number, nullable
      - `from_currency` string
      - `payout_currency` string
      - `virtual_account_id` string, uuid
      - `created_at` string, date-time
      - `updated_at` string, date-time
    - `pagination` object
      - `current_page` integer
      - `per_page` integer
      - `total_page` integer
      - `total` integer

## Other responses

- `401` — Authentication failed due to invalid credentials
- `404` — Resource not found
- `422` — Failed due to a formatting error.

---

[API](https://skmtc.net/fin/apis/fin-com-api.md) · [All operations](https://skmtc.net/fin/apis/fin-com-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/fin/fin-com-api/versions/6e69503ee7b8/schema)
