MCPcopy Create free account
hub / github.com/Rushifakami/csfloat_api / get_transactions

Method get_transactions

csfloat_client.py:140–144  ·  view source on GitHub ↗
(self, page: int = 0, limit: int = 10)

Source from the content-addressed store, hash-verified

138 return Me(data=response)
139
140 async def get_transactions(self, page: int = 0, limit: int = 10):
141 parameters = f"/me/transactions?page={page}&limit={limit}&order=desc"
142 method = "GET"
143 response = await self._request(method=method, parameters=parameters)
144 return response
145
146 async def get_account_standing(self):
147 parameters = "/me/account-standing"

Callers

nothing calls this directly

Calls 1

_requestMethod · 0.95

Tested by

no test coverage detected