Skip to main content
GET
/
v1
/
beneficiaries
/
{beneficiary_id}
/
transactions
/
{transaction_id}
Fetch Transaction Details
curl --request GET \
  --url https://sandbox.api.fin.com/v1/beneficiaries/{beneficiary_id}/transactions/{transaction_id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "9ac6872b-8904-4ea5-beb7-d5a936ffee10",
    "transaction_type": "DEBIT",
    "beneficiary_id": "d6ae4ea6-0482-47ab-a895-02e50ea6358b",
    "hash": "0x58083dc1851a288496263cc1a4688a5abead5fd4f66b80516afaa27e5b3879d2",
    "transaction_ref_id": "cd25866b-265a-4e39-9",
    "from_amount": 3,
    "payout_amount": 1.748682,
    "processing_amount": 2.335,
    "status": "COMPLETED",
    "fx_rate": 0.7489,
    "developer_fee": 0.665,
    "developer_fee_percentage": 0.5,
    "developer_fee_fixed": 0.65,
    "source_chain": "POLYGON",
    "from_currency": "USDC",
    "payout_currency": "GBP",
    "created_at": "2025-10-26T09:38:45.641823Z",
    "updated_at": "2025-10-26T09:44:01.963307Z"
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

version
string
required

API version

beneficiary_id
string<uuid>
required

Unique identifier for the beneficiary

transaction_id
string
required

Transaction identifier (can be transaction ID or hash depending on 'by' parameter)

Query Parameters

by
enum<string>
required

Specify whether to query by transaction ID or the deposit transaction hash

Available options:
TRX_ID,
TRX_HASH

Response

OK - Transaction details retrieved successfully

data
object