MarketListing
This object represents a market listing
Structure
- Fields
id
>UUID v1
- ID of the listing in-gamename
>String
- Name of the item in the listingtype
>Optional[String]
- Type of item in the listingstack
>Integer
- Amount of items being sold in the listingprice
>Integer
- Price of the listingprice_each
>Float
- Calculated price for each item based onprice
andstack
created_at
>UTC Timestamp (seconds)
- When the listing was created in-gamelast_seen
>UTC Timestamp (seconds)
- When the item was last available in the market (Bot captured)expired
>Boolean
- If a listing is expired either by game's limit or through last_seen inactive for 3 hours straightexpires_at
>UTC Timestamp (seconds)
- Calculated date of when a listing would expire based on when it was created
Example
{
"created_at": 1722334646,
"expired": true,
"expires_at": 1722939446,
"id": "aec320c0-4e6d-11ef-8346-01005161a8df",
"last_seen": 1722367868,
"name": "Acrobat Bark",
"price": 72000,
"price_each": 1600.0,
"stack": 45,
"type": null
}