{ "opencollection": "1.0.0", "info": { "name": "Monta Public Authentication Wallet Transactions API", "version": "2023-09-14" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Wallet Transactions", "type": "folder" }, "items": [ { "info": { "name": "List wallet transactions.", "type": "http" }, "http": { "method": "GET", "url": "https://public-api.monta.com/api/v1/wallet-transactions", "params": [ { "name": "page", "value": "", "type": "query", "description": "Page number to retrieve (starts with 0)." }, { "name": "perPage", "value": "", "type": "query", "description": "Number of items per page (between 1 and 100, default 10)." } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Returns a paginated list of wallet transactions. Required scope: `wallet-transactions`." }, { "info": { "name": "Get a single wallet transaction.", "type": "http" }, "http": { "method": "GET", "url": "https://public-api.monta.com/api/v1/wallet-transactions/:id", "params": [ { "name": "id", "value": "", "type": "path" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Returns a single wallet transaction by its identifier. Required scope: `wallet-transactions`." }, { "info": { "name": "Get the personal wallet.", "type": "http" }, "http": { "method": "GET", "url": "https://public-api.monta.com/api/v1/personal-wallet", "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Returns the personal wallet for the authenticated user. Required scope: `wallet-transactions`." } ] } ], "bundled": true }