Skip to main content

Get Buy Order & Lowest Sale Prices

GET /infos/prices/buyorderAndLowestSales

Retrieves a global list of all items with their highest buy order price and lowest sale price. Data is cached for performance and can be force-refreshed.
GET /infos/prices/buyorderAndLowestSales
Authentication: None Query Parameters
update
string
If present, bypasses the cache and fetches fresh data.
Response
{
  "status": "success",
  "data": {
    "prices": [
      {
        "item_id": 1,
        "buyorder_price": 1500,
        "lowest_sale_price": 2000
      },
      {
        "item_id": 2,
        "buyorder_price": 500,
        "lowest_sale_price": 750
      }
    ]
  }
}
FieldTypeDescription
item_idintegerUnique item type identifier
buyorder_priceintegerHighest active buy order price (in cents)
lowest_sale_priceintegerLowest current sale listing price (in cents)
Prices are in cents (divide by 100 for dollar amounts). This endpoint is heavily cached — use the update parameter only when necessary.

Get Admin Info

GET /infos/admin

Retrieves the list of admin/staff members. Requires API key authentication.
GET /infos/admin
Authentication: api (API key required), noDB Response Returns a JSON array of staff member information.
[
  {
    "name": "AdminName",
    "steamId": "76561198000000000",
    "role": "admin"
  }
]