curl --request GET \
--url https://sandbox.api.fin.com/v1/beneficiaries/{beneficiary_id}/transactions \
--header 'Authorization: Bearer <token>'{
"data": {
"pagination": {
"current_page": 1,
"per_page": 10,
"total_page": 1,
"total": 1
},
"transactions": [
{
"id": "f656afd1-7735-43b0-b630-04f0ff7158b3",
"transaction_type": "OFFRAMP",
"beneficiary_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"hash": "<string>",
"transaction_ref_id": "<string>",
"from_amount": 3,
"payout_amount": 4.35,
"processing_amount": 3,
"status": "COMPLETED",
"fx_rate": 1.45,
"developer_fee": 0,
"developer_fee_percentage": 0.45,
"developer_fee_fixed": 1.25,
"from_currency": "USDC",
"payout_currency": "AUD",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}
]
}
}Retrieve a paginated list of all transactions for a specific beneficiary
curl --request GET \
--url https://sandbox.api.fin.com/v1/beneficiaries/{beneficiary_id}/transactions \
--header 'Authorization: Bearer <token>'{
"data": {
"pagination": {
"current_page": 1,
"per_page": 10,
"total_page": 1,
"total": 1
},
"transactions": [
{
"id": "f656afd1-7735-43b0-b630-04f0ff7158b3",
"transaction_type": "OFFRAMP",
"beneficiary_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"hash": "<string>",
"transaction_ref_id": "<string>",
"from_amount": 3,
"payout_amount": 4.35,
"processing_amount": 3,
"status": "COMPLETED",
"fx_rate": 1.45,
"developer_fee": 0,
"developer_fee_percentage": 0.45,
"developer_fee_fixed": 1.25,
"from_currency": "USDC",
"payout_currency": "AUD",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}
]
}
}Bearer token authentication. Obtain token from /v1/oauth/token endpoint
x >= 11 <= x <= 100Transactions retrieved successfully
Show child attributes