Skip to main content
GET
/
v1
/
virtual-account
/
{virtual_account_id}
/
transactions
Fetch Virtual Account Transactions
curl --request GET \
  --url https://sandbox.api.fin.com/v1/virtual-account/{virtual_account_id}/transactions \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "pagination": {
      "current_page": 1,
      "per_page": 10,
      "total_page": 1,
      "total": 4
    },
    "transactions": [
      {
        "id": "e34a382f-f0b6-40f2-b53b-97cb31f0506c",
        "transaction_type": "ONRAMP",
        "beneficiary_id": null,
        "hash": null,
        "transaction_ref_id": "46e49f53-ad25-4ea8-93d0-24eed9922324",
        "from_amount": 0,
        "payout_amount": 0,
        "processing_amount": null,
        "status": "COMPLETED",
        "fx_rate": 0,
        "developer_fee": 0,
        "developer_fee_percentage": 0,
        "developer_fee_fixed": null,
        "from_currency": "USD",
        "payout_currency": "USDC",
        "virtual_account_id": "3e7ce5ef-09bc-4e80-97f1-651ac483546f",
        "created_at": "2025-11-12T22:30:29.430071Z",
        "updated_at": "2025-11-12T22:35:37.98024Z"
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

Bearer token authentication. Obtain token from /v1/oauth/token endpoint

Path Parameters

virtual_account_id
string<uuid>
required

Unique identifier for the virtual account

Query Parameters

page
integer
default:1

Page number for pagination

limit
integer
default:10

Number of transactions per page

Response

Virtual account transactions retrieved successfully

data
object
required