curl --request GET \
--url https://api.caminotreasury.com/v1/{chainId}/transactions \
--header 'x-api-key: <api-key>'{
"data": [
{
"hash": "0x1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef",
"chainId": 123,
"status": "pending",
"type": "deposit",
"from": "<string>",
"contract": "<string>",
"token": "<string>",
"amount": "<string>",
"organizationId": "<string>",
"walletId": 123,
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}
],
"count": 123,
"pagination": {
"hasMore": true,
"nextCursor": "2023-11-07T05:31:56Z"
}
}Returns transactions for the organization on a specific chain with optional filters and cursor-based pagination.
curl --request GET \
--url https://api.caminotreasury.com/v1/{chainId}/transactions \
--header 'x-api-key: <api-key>'{
"data": [
{
"hash": "0x1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef",
"chainId": 123,
"status": "pending",
"type": "deposit",
"from": "<string>",
"contract": "<string>",
"token": "<string>",
"amount": "<string>",
"organizationId": "<string>",
"walletId": 123,
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}
],
"count": 123,
"pagination": {
"hasMore": true,
"nextCursor": "2023-11-07T05:31:56Z"
}
}API key for authentication. Pass your key in the x-api-key header.
Blockchain chain ID
Filter by transaction status
pending, confirmed, failed Filter by transaction type
deposit, withdrawal, yield, approval, other Number of results to return (1-100, default 20)
1 <= x <= 100Pagination cursor (ISO 8601 timestamp from a previous response's nextCursor)