curl "https://api.liquid.tf/api/dev/load_pending" \
-H "X-API-Key: YOUR_SITE_API_KEY"
[
{
"user_id": "76561198000000000",
"trade_id": "7234567890",
"timestamp": 1704067200,
"status": "Action Required",
"total": 33000,
"items": [
{
"name": "Mann Co. Supply Crate Key",
"sku": "5021;6",
"quantity": 2,
"price": 16500,
"quality": "Unique",
"image_url": "563268321",
"particle_url": ""
}
],
"trade_type": "market",
"raw_status": "SENT",
"buyer_id": "76561198111111111",
"supplier_id": "76561198000000000",
"buyer_steam_creation_time": 1234567890,
"supplier_steam_creation_time": 1234567890,
"partner_steam_creation_time": 1234567890,
"name_tax_reduction": false,
"verification_code": "ABC123"
}
]
Trade Management
Load Pending Marketplace Trades
Retrieve all pending marketplace trades where you are the buyer or seller
GET
/
api
/
dev
/
load_pending
curl "https://api.liquid.tf/api/dev/load_pending" \
-H "X-API-Key: YOUR_SITE_API_KEY"
[
{
"user_id": "76561198000000000",
"trade_id": "7234567890",
"timestamp": 1704067200,
"status": "Action Required",
"total": 33000,
"items": [
{
"name": "Mann Co. Supply Crate Key",
"sku": "5021;6",
"quantity": 2,
"price": 16500,
"quality": "Unique",
"image_url": "563268321",
"particle_url": ""
}
],
"trade_type": "market",
"raw_status": "SENT",
"buyer_id": "76561198111111111",
"supplier_id": "76561198000000000",
"buyer_steam_creation_time": 1234567890,
"supplier_steam_creation_time": 1234567890,
"partner_steam_creation_time": 1234567890,
"name_tax_reduction": false,
"verification_code": "ABC123"
}
]
Overview
Returns all pending marketplace trades (type: "market") where the authenticated user is either buying from a seller’s listing or selling to a buyer.
For buy order fulfillment trades, use Load Pending Buy Order Trades instead.
Authentication
Your site API key
Rate Limit
1 request per minuteResponse
Array of pending trade objects
Show Trade Object
Show Trade Object
Your Steam ID
Steam trade offer ID
Unix timestamp when trade was created
Human-readable status:
"Action Required"- You are the seller and need to accept the trade"Waiting for seller"- You are the buyer waiting for seller to accept
Total price of all items in the trade (in cents)
Always
"market" for marketplace tradesRaw trade status from database (e.g.,
"SENT")Steam ID of the buyer
Steam ID of the seller
Unix timestamp of buyer’s Steam account creation
Unix timestamp of supplier’s Steam account creation
Unix timestamp of actual trade partner’s Steam account creation
Whether name tag tax reduction was applied
Trade verification code (if applicable)
Array of items in the trade
Show Item Object
Show Item Object
Display name of the item
Item SKU (e.g.,
"5021;6")Number of this item in the trade
Price per unit (in cents)
Item quality (e.g.,
"Unique", "Strange", "Unusual")Steam class ID for item image
Effect ID for unusual items (empty string if not unusual)
War Paint wear level (only present for decorated items)
curl "https://api.liquid.tf/api/dev/load_pending" \
-H "X-API-Key: YOUR_SITE_API_KEY"
[
{
"user_id": "76561198000000000",
"trade_id": "7234567890",
"timestamp": 1704067200,
"status": "Action Required",
"total": 33000,
"items": [
{
"name": "Mann Co. Supply Crate Key",
"sku": "5021;6",
"quantity": 2,
"price": 16500,
"quality": "Unique",
"image_url": "563268321",
"particle_url": ""
}
],
"trade_type": "market",
"raw_status": "SENT",
"buyer_id": "76561198111111111",
"supplier_id": "76561198000000000",
"buyer_steam_creation_time": 1234567890,
"supplier_steam_creation_time": 1234567890,
"partner_steam_creation_time": 1234567890,
"name_tax_reduction": false,
"verification_code": "ABC123"
}
]
⌘I
