Skip to content

samuelcsouza/steam-marketplace-api

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

63 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

API - Steam Marketplace

Chicken Strike!

An unofficial API to get data from the Steam Marketplace

Run API

Via Terminal

cd api/

uvicorn src.main:app --reload --workers 1 --host 0.0.0.0 --port 8002

Via docker-compose

docker-compose up --build

Example

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:

  1. item: Represents the item you want to know the price;
  2. fill (optional): Fill values with the last observation. Default is true.

References