[Market] Search the lowest price by Hashname

Return the lowest price and quantity of items available for sale under the specified Hashname.

Curl request

$ curl 'https://www.skindeer.com/market/open_api/request/?action=merchant.product.price.query' -i -X POST \
    -H 'Content-Type: application/json' \
    -d '{
  "marketHashName" : "★ StatTrak™ M9 Bayonet | Doppler (Factory New)",
  "apiKey" : "955a2f4e8f121cdda99ae97ae9728d2d",
  "delivery": "Bot"
}'

HTTP request

POST /market/open_api/request/?action=merchant.product.price.query HTTP/1.1
Content-Type: application/json
Content-Length: 82
Host: localhost:8080

{
  "marketHashName" : "★ StatTrak™ M9 Bayonet | Doppler (Factory New)",
  "apiKey" : "955a2f4e8f121cdda99ae97ae9728d2d",
  "phase":"p1",
  "delivery": "Bot"
}

Request body

{
  "marketHashName" : "★ StatTrak™ M9 Bayonet | Doppler (Factory New)",
  "apiKey" : "955a2f4e8f121cdda99ae97ae9728d2d",
  "phase":"p1",
  "delivery":"Bot"
}

Table 1. Request fields

Path
Type
Description

marketHashName

String

Steam market item hash name. One must be filled in with itemId

apiKey

String

api key

phase

String

[optional], Doppler: p1, p2, p3, p4, ruby, sapphire, blackpearl, emerald. Please use lowercase letters for the phase type in your request.

delivery

String

[optional], valid values are "P2P"(manual delivery) or "Bot"(automatic delivery). Please use exactly the same input as provided, for unrecognized values will be ignored.

HTTP response

HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 247

{
    "code": 0,
    "message": "SUCCESS",
    "data": {
        "itemId": 45,
        "marketHashName": "★ StatTrak™ M9 Bayonet | Doppler (Factory New)",
        "price": "0.08",
        "count": 1092
    }
}

Table 2. Response fields

Path
Type
Description

message

String

Response Message.

code

Number

Response code.

data

Object

Actual data.

data.marketHashName

String

Steam market item hash name.

data.itemId

Number

Steam market item id.

data.price

String

The lowest price on sale (in US dollars).

data.count

Number

quantity on sale

Last updated