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

Method get_pending_trades

csfloat_client.py:159–166  ·  view source on GitHub ↗
(
            self, limit: int = 500, page: int = 0
    )

Source from the content-addressed store, hash-verified

157 return response
158
159 async def get_pending_trades(
160 self, limit: int = 500, page: int = 0
161 ) -> Optional[dict]:
162 parameters = f"/me/trades?state=pending&limit={limit}&page={page}"
163 method = "GET"
164
165 response = await self._request(method=method, parameters=parameters)
166 return response
167
168 async def get_similar(
169 self, *, listing_id: int, raw_response: bool = False

Callers

nothing calls this directly

Calls 1

_requestMethod · 0.95

Tested by

no test coverage detected