curl "https://api.liquid.tf/api/dev/load_pending" \
-H "X-API-Key: YOUR_SITE_API_KEY"
const response = await fetch('https://api.liquid.tf/api/dev/load_pending', {
headers: {
'X-API-Key': 'YOUR_SITE_API_KEY'
}
});
const trades = await response.json();
import requests
response = requests.get(
'https://api.liquid.tf/api/dev/load_pending',
headers={'X-API-Key': 'YOUR_SITE_API_KEY'}
)
trades = response.json()
[
{
"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"
const response = await fetch('https://api.liquid.tf/api/dev/load_pending', {
headers: {
'X-API-Key': 'YOUR_SITE_API_KEY'
}
});
const trades = await response.json();
import requests
response = requests.get(
'https://api.liquid.tf/api/dev/load_pending',
headers={'X-API-Key': 'YOUR_SITE_API_KEY'}
)
trades = response.json()
[
{
"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
string
required
Your site API key
Rate Limit
1 request per minuteResponse
array
Array of pending trade objects
Show Trade Object
Show Trade Object
string
Your Steam ID
string
Steam trade offer ID
integer
Unix timestamp when trade was created
string
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
integer
Total price of all items in the trade (in cents)
string
Always
"market" for marketplace tradesstring
Raw trade status from database (e.g.,
"SENT")string
Steam ID of the buyer
string
Steam ID of the seller
integer
Unix timestamp of buyer’s Steam account creation
integer
Unix timestamp of supplier’s Steam account creation
integer
Unix timestamp of actual trade partner’s Steam account creation
boolean
Whether name tag tax reduction was applied
string
Trade verification code (if applicable)
array
Array of items in the trade
Show Item Object
Show Item Object
string
Display name of the item
string
Item SKU (e.g.,
"5021;6")integer
Number of this item in the trade
integer
Price per unit (in cents)
string
Item quality (e.g.,
"Unique", "Strange", "Unusual")string
Steam class ID for item image
string
Effect ID for unusual items (empty string if not unusual)
string
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"
const response = await fetch('https://api.liquid.tf/api/dev/load_pending', {
headers: {
'X-API-Key': 'YOUR_SITE_API_KEY'
}
});
const trades = await response.json();
import requests
response = requests.get(
'https://api.liquid.tf/api/dev/load_pending',
headers={'X-API-Key': 'YOUR_SITE_API_KEY'}
)
trades = response.json()
[
{
"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
