[Market] Fetch all items on sale V1

Fetch all items in market and their min price and count.

HTTP request

POST /market/open_api/request/?action=merchant.market.items HTTP/1.1
Content-Type: application/json
Content-Length: 262
Host: localhost:8080

{
  "apiKey" : "ft8CxQvvOGxpXVJcMhgZ"
} 

Table 4. Request fields

Path
Type
Description

apiKey

String

api key

HTTP response

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

{
  "code": 0,
  "message": "SUCCESS",
  "data": {
    "data": [
      {
        "items": [
            {
                "marketHashName":"★ StatTrak™ M9 Bayonet | Doppler (Factory New)",
                "sellingCount":1,
                "sellingPriceMin":"1.02",
                "Phase4": {
                  "sellingCount": 1,
                  "sellingPriceMin": "3569.04"
                }
            }
        ],
        "total": 1
      }
    ]
  }
}

Table 5. Response fields

Path
Type
Description

message

String

Response Message.

code

Number

Response code.

data

Array

Actual data.

data.total

Number

Total number of market templates

data.items

Array

market list

data.items.[].marketHashName

String

market hash name

data.items.[].sellingPriceMin

String

The lowest price on sale (in US dollars).

data.items.[].sellingCount

Number

Quantity on sale.

data.items.[].Ruby

Object

Doppler attribute:Ruby,Sapphire,BlackPearl,Emerald,Phase1,Phase2,Phase3,Phase4

data.items[].Ruby.sellingCount

Number

quantity on sale

data.items[].Ruby.sellingPriceMin

String

Lowest price

Last updated