Skip to main content

GET /secure/prices

Returns current offer prices for items in a specific game. Use this to sync pricing data into your own database or display price information without fetching a specific user’s inventory. Authentication: API Key (api-key header, requires CORE_ACCESS scope)

Request

GET https://api.assetpay.co/secure/prices?game=730
api-key: YOUR_API_KEY

Query Parameters

ParameterTypeDefaultDescription
gamenumber730Game app ID (730 = CS2, 252490 = Rust)

Response (CS2)

{
  "requestId": "...",
  "success": true,
  "data": [
    {
      "marketHashName": "AK-47 | Redline (Field-Tested)",
      "accepted": true,
      "price": 10.75
    },
    {
      "marketHashName": "AWP | Dragon Lore (Factory New)",
      "accepted": true,
      "price": 1720.50
    }
  ]
}

CS2 Response Fields

FieldTypeDescription
marketHashNamestringItem’s market hash name
acceptedbooleanWhether the item is currently accepted for trading
pricenumberCurrent offer price in USD

Response (Rust)

{
  "requestId": "...",
  "success": true,
  "data": [
    {
      "marketHashName": "Large Wood Box",
      "overstockLimit": 100,
      "depositPrice": 0.12,
      "withdrawPrice": 0.18
    }
  ]
}

Rust Response Fields

FieldTypeDescription
marketHashNamestringItem’s market hash name
overstockLimitnumberMaximum quantity accepted
depositPricenumberPrice paid for deposits (USD)
withdrawPricenumberPrice charged for withdrawals (USD)

Rate Limits

Merchant StatusLimit
Verified1,000 requests / hour
Unverified100 requests / hour