Skip to main content
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

X-API-Key
string
required
Your site API key

Rate Limit

1 request per minute

Response

array
array
Array of pending trade objects
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"
  }
]