Skip to main content
GET
/
v1
/
beneficiaries
/
{beneficiary_id}
/
transactions
List Beneficiary Transactions
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"
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

beneficiary_id
string<uuid>
required

Query Parameters

page
integer
default:1
Required range: x >= 1
limit
integer
default:10
Required range: 1 <= x <= 100

Response

Transactions retrieved successfully

data
object