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

Method get_sales

csfloat_client.py:208–214  ·  view source on GitHub ↗
(self, market_hash_name: str, paint_index: int = None)

Source from the content-addressed store, hash-verified

206 return response
207
208 async def get_sales(self, market_hash_name: str, paint_index: int = None):
209 parameters = f"/history/{market_hash_name}/sales"
210 if paint_index is not None:
211 parameters += f"?paint_index={paint_index}"
212 method = "GET"
213 response = await self._request(method=method, parameters=parameters)
214 return response
215
216 async def get_all_listings(
217 self,

Callers

nothing calls this directly

Calls 1

_requestMethod · 0.95

Tested by

no test coverage detected