Mercury
getTreasuryTransactions
Retrieve paginated treasury transactions for a specific treasury account.
Remote mercury
Remote (network-hosted)
Other tools also called getTreasuryTransactions?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"limit": {
"type": "integer",
"default": 100,
"maximum": 1000,
"minimum": 1,
"description": "Maximum number of results to return. Defaults to 100"
},
"order": {
"enum": [
"asc",
"desc"
],
"type": "string",
"default": "desc",
"description": "Sort order for transactions. Can be 'asc' or 'desc'. Defaults to 'desc'"
},
"cursor": {
"type": "number",
"minimum": 0,
"description": "Pagination cursor for retrieving next batch of transactions. Must be an integer >= 0"
},
"treasuryId": {
"type": "string",
"format": "uuid",
"description": "ID for a Mercury account."
}
}
}