An unofficial API to get data from the Steam Marketplace
cd api/
uvicorn src.main:app --reload --workers 1 --host 0.0.0.0 --port 8002
docker-compose up --build
The route needs to appid where it is Steam Game ID. All IDs list can find here: Steam Application IDs
wget --no-check-certificate \
--method GET \
'http://0.0.0.0:8002/marketplace/730/?item=AK-47 | Safari Mesh (Factory New)&fill=true'
The endpoint receive two parameters:
- item: Represents the item you want to know the price;
- fill (optional): Fill values with the last observation. Default is true.