Get Beneficiary Transactions
Get list of beneficiary transactions for the authenticated user.
Endpoint
GET /trp/beneficiary-transactions
Headers
| Header | Type | Required | Description |
|---|---|---|---|
x-api-key | string | Yes | Your API key for authentication |
x-secret-key | string | Yes | Your secret key for authentication |
Example Request
curl -X GET "{{baseUrl}}/trp/beneficiary-transactions" \
-H "x-api-key: {your-api-key}" \
-H "x-secret-key: {your-secret-key}"
Response
Success (200 OK)
{
"success": true,
"data": [
{
"id": "a673c894-e2be-4925-8cef-e71e29df5d6f",
"parent_transaction_id": "460286fb-2707-4037-a208-8a9878300f3e",
"status": "Pending KYC on Originator Info",
"amount": "5",
"currency": "ETH",
"created_at": "2025-08-25T04:37:45.820Z",
"updated_at": "2025-08-25T04:37:45.820Z",
"originator": {
"kycCheck": {
"error": "getaddrinfo ENOTFOUND sanctions.trpscout.co",
"riskLevel": "ERROR",
"hasMatches": false,
"performedAt": "2025-08-25T04:37:45.816Z",
"totalMatches": 0
},
"typeOfPerson": "natural",
"originatorVASP": "SecureWallet Inc",
"originatorLastName": "nook",
"originatorFirstName": "Tom",
"originatorWalletAddress": "0xb9dF910bF7E2451Ad3d5a51F89d6E1d17F47674C"
},
"beneficiary": {
"name": "John Doe"
}
}
],
"pagination": {
"total": "9",
"page": 1,
"limit": 10,
"pages": 1
}
}