Transactions
Transactions represent user and system interactions with Pareto vaults such as deposits, redemptions, and claims.
Structure
Each transaction object includes:
_id(string) — Unique identifiertype(string) — One of:DEPOSIT,REDEEM,CLAIMstatus(string) — One of:PENDING,SUCCESS,FAILEDhash(string) — Transaction hash on-chainchainId(string) — Blockchain ID where the transaction occurredwalletAddress(string) — Wallet initiating the transactionvaultId(string) — Associated vaultepochId(string) — Related epoch (if applicable)tokenId(string) — Token involvedamount(string) — Amount transactedamountUSD(string) — USD equivalent of the transactiongasFeeUSD(string) — Gas fee in USDblock: (object)number(number) — Block numbertimestamp(number) — Unix timestamp of the block
createdAt,updatedAt(string) — ISO timestampscreatedBy,updatedBy(string) — Actor identifiers
Endpoints
A list of transactions
GET /v1/transactions HTTP/1.1
Host: api.pareto.credit
Accept: */*
A list of transactions
{
"data": [
{
"_id": "text",
"type": "DEPOSIT",
"status": "PENDING",
"hash": "text",
"chainId": "text",
"walletAddress": "text",
"vaultId": "text",
"epochId": "text",
"tokenId": "text",
"amount": "text",
"amountUSD": "text",
"gasFeeUSD": "text",
"block": {
"number": 1,
"timestamp": 1
},
"createdAt": "2025-11-14T20:57:40.679Z",
"updatedAt": "2025-11-14T20:57:40.679Z",
"createdBy": "text",
"updatedBy": "text"
}
],
"totalCount": 1
}Last updated

