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": {
    "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.

Authorizations

Authorization
string
header
required

Bearer token authentication. Obtain token from Issue a Token endpoint

Path Parameters

virtual_account_id
string<uuid>
required

Query Parameters

page
integer
default:1
limit
integer
default:10

Response

Virtual account transactions retrieved successfully

data
object
required