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"
}
]
}
}Retrieve a paginated list of all transactions for a specific virtual account
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"
}
]
}
}Bearer token authentication. Obtain token from /v1/oauth/token endpoint
Unique identifier for the virtual account
Page number for pagination
Number of transactions per page
Virtual account transactions retrieved successfully
Show child attributes