Method
get_sales
(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
Tested by
no test coverage detected