curl --request GET \
--url https://sandbox.api.fin.com/v1/virtual-account/{virtual_account_id}/transactions \
--header 'Authorization: Bearer <token>'{
"data": {
"transactions": [
{
"id": "e34a382f-f0b6-40f2-b53b-97cb31f0506c",
"transaction_type": "ONRAMP",
"beneficiary_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"hash": "<string>",
"transaction_ref_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"from_amount": 0,
"payout_amount": 0,
"processing_amount": 123,
"status": "COMPLETED",
"fx_rate": 0,
"developer_fee": 0,
"developer_fee_percentage": 0,
"developer_fee_fixed": 123,
"from_currency": "USD",
"payout_currency": "USDC",
"virtual_account_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"pagination": {
"current_page": 1,
"per_page": 10,
"total_page": 1,
"total": 4
}
}
}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": {
"transactions": [
{
"id": "e34a382f-f0b6-40f2-b53b-97cb31f0506c",
"transaction_type": "ONRAMP",
"beneficiary_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"hash": "<string>",
"transaction_ref_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"from_amount": 0,
"payout_amount": 0,
"processing_amount": 123,
"status": "COMPLETED",
"fx_rate": 0,
"developer_fee": 0,
"developer_fee_percentage": 0,
"developer_fee_fixed": 123,
"from_currency": "USD",
"payout_currency": "USDC",
"virtual_account_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}
],
"pagination": {
"current_page": 1,
"per_page": 10,
"total_page": 1,
"total": 4
}
}
}Documentation Index
Fetch the complete documentation index at: https://developer.fin.com/llms.txt
Use this file to discover all available pages before exploring further.
Bearer token authentication. Obtain token from Issue a Token endpoint
Virtual account transactions retrieved successfully
Show child attributes