CS2DT饰品开放平台
🇺🇸 English
  • 🇨🇳简体中文
  • 🇺🇸 English
首页
商户中心
首页
商户中心
🇺🇸 English
  • 🇨🇳简体中文
  • 🇺🇸 English
🇺🇸 English
  • 🇨🇳简体中文
  • 🇺🇸 English
  1. Market and Product search
  • CS2DT Open Platform Access Guide
  • Response Сodes and Errors
  • About penalty for reversed orders / rollbacks
  • About adjusting the order status for reversed orders / rollbacks
  • API
    • Merchant and Steam accounts
      • Get your account balance
      • Start a Steam account check
      • Steam account status query
    • Market and Product search
      • CS2 Style Data
      • Get price and quantity by Style
        GET
      • Get the lowest price for all items
        GET
      • Get all active listings
        POST
      • Search Market listings
        GET
      • Item price query
        POST
      • Get all the filters info
        GET
      • Get all listings of an item
        GET
      • Check items status updates
        POST
      • Batch query of active listings by product ID
        POST
      • Get listing details by product ID
        GET
    • Purchase Items
      • Buy via product ID
      • Quick buy via market hash name
    • Manage Orders
      • Purchase orders history
      • Purchase orders details
      • Cancel a delayed purchase order
      • Report a reversed order
    • Callback
      • Webhook Notifications
    • Exchange rate
      • USD/CNY exchange rate
    • Websocket
      • How to Use WebSocket
      • Get WSS Address
    • Buy orders
      • Create a buy order
      • Cancel a buy order
      • Your buy orders list
      • Reference price for buy orders
      • Your buy order details
    • Sell your items
      • Selling Guide
      • List for sale
      • Cancel sell listings
      • Sell listing details
      • Reference price for sale
      • Sell listing update
      • Update order status
      • Check items on sale list
      • Check sell orders status
  • Schemas
    • OpenBuyResultDTO
    • WebApiRes«BigDecimal»
    • Object
    • WebApiRes«OpenBuyResultDTO»
    • NormalBuyParamV2DTO
    • QuickBuyParamV2DTO
    • UserAccountOpenDTO
    • WebApiRes«UserAccountOpenDTO»
    • WebApiRes«String»
    • SteamCheckCreateDTO
    • UserSteamInfo
    • CheckStatusInfo
    • GenericCheckSteamOutPut
    • WebApiRes«GenericCheckSteamOutPut»
    • OpenPartnerInfoDTO
    • WebApiRes«OpenPartnerInfoDTO»
    • SaveCallbackUrlDTO
    • InventorySlotDTO
    • ErrorCode
    • InventorySteamAccountDTO
    • WebApiRes«List«InventorySteamAccountDTO»»
    • WebApiRes«Boolean»
    • ItemAssetGemVO
    • ItemAssetStickerVO
    • ItemAssetClassInfoStyleVO
    • ItemAssetBundleVO
    • ItemAssetInfoVO
    • ItemTagInfoVO
    • SteamOfferListItemDTO
    • SteamOfferListInfoDTO
    • OfferDetailDTO
    • WebApiRes«OfferDetailDTO»
    • SendAssetsResponseDTO
    • WebApiRes«SendAssetsResponseDTO»
    • SteamAssetInfoDTO
    • SendAssetParamDTO
    • OrderUserInfo
    • SearcherOrderAssetListDTO
    • PageList«SearcherOrderAssetListDTO»
    • WebApiRes«PageList«SearcherOrderAssetListDTO»»
    • OpenItemInfo
    • OfferInfoDTO
    • OpenBuyerOrderDetail
    • WebApiRes«OpenBuyerOrderDetail»
    • OpenSellerOrderDetail
    • WebApiRes«OpenSellerOrderDetail»
    • ConfirmOrderParamDTO
    • OrderCancelParamDTO
    • Inspect3DResponse
    • WebApiRes«Inspect3DResponse»
    • PriceInfo
    • OpenProductSearchDTO
    • PageList«OpenProductSearchDTO»
    • WebApiRes«PageList«OpenProductSearchDTO»»
    • ItemPriceInfo
    • WebApiRes«List«ItemPriceInfo»»
    • ItemPriceInfoRequest
    • OpenItemPriceInfo
    • WebApiRes«OpenItemPriceInfo»
    • ItemSearchFilterValueItem
    • ItemSearchFilterItem
    • ItemSearchFilterDTO
    • WebApiRes«ItemSearchFilterDTO»
    • DeliveryStatsItem
    • DeliveryStatsInfoVO
    • SellerUserInfoVO
    • ProductSellListDTO
    • PageList«ProductSellListDTO»
    • WebApiRes«PageList«ProductSellListDTO»»
    • ProductInfoDTO
    • ProductInfoListDTO
    • WebApiRes«ProductInfoListDTO»
    • ProductInfoRequestDTO
    • WebApiRes«ProductSellListDTO»
    • SteamItemDTO
    • PageList«SteamItemDTO»
    • WebApiRes«PageList«SteamItemDTO»»
    • SteamItemAttrValueDTO
    • PageList«SteamItemAttrValueDTO»
    • WebApiRes«PageList«SteamItemAttrValueDTO»»
    • SteamItemAttrDTO
    • PageList«SteamItemAttrDTO»
    • WebApiRes«PageList«SteamItemAttrDTO»»
    • SteamItemTagsDTO
    • PageList«SteamItemTagsDTO»
    • WebApiRes«PageList«SteamItemTagsDTO»»
    • BaseItemInfo
    • Sticker
    • AssetInfo
    • OpenInventoryItem
    • OpenInventoryResponseDTO
    • WebApiRes«OpenInventoryResponseDTO»
    • OpenSaleSteamInfoDTO
    • ItemPriceDTO
    • OpenSaleDTO
    • OrderDeliverDTO
    • SteamInventorySlotVO
    • SteamAccountVO
    • ActivityTagVO
    • SellerSellListDTO
    • PageList«SellerSellListDTO»
    • WebApiRes«PageList«SellerSellListDTO»»
    • OnSaleAssetDTO
    • OnSaleFailedItem
    • ModifySellPriceResponseDTO
    • WebApiRes«ModifySellPriceResponseDTO»
    • SellPriceDTO
    • ModifyPriceParamDTO
    • OffSaleResponseDTO
    • WebApiRes«OffSaleResponseDTO»
    • OffSaleParamDTO
  1. Market and Product search

Batch query of active listings by product ID

POST
https://openapi.cs2dt.com/v2/product/v2/list/ids
Retrieve information about multiple product IDs. Only products that are currently listed for sale are returned. If a product is not included in the response, you can assume that it is no longer listed. Each request can include up to 100 product IDs, limited to 30QPS.

Request

Query Params

Body Params application/json

Example
{
    "productIds": [
        1046108517917470720,
        1258978575405223937
    ]
}

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --globoff 'https://openapi.cs2dt.com/v2/product/v2/list/ids?app-key=' \
--header 'Content-Type: application/json' \
--data '{
    "productIds": [
        1046108517917470720,
        1258978575405223937
    ]
}'

Responses

🟢200Success
application/json
Bodyapplication/json

Example
{
    "success": true,
    "data": [
        {
            "id": "1265418852728930304",
            "sellerInfo": null,
            "systemTime": null,
            "appId": 730,
            "appName": null,
            "itemId": "553468129",
            "itemName": null,
            "marketHashName": "M4A1-S | Nightmare (Factory New)",
            "price": "55.62",
            "cnyPrice": "353.33",
            "delivery": 1,
            "description": null,
            "assetInfo": {
                "classInfoId": "1265418852573741056",
                "classId": "5917057534",
                "instanceId": "480085569",
                "assetId": "37548893727",
                "styleId": "0",
                "lastStyle": "",
                "styleProgress": "",
                "wear": "0.0699556320905685",
                "paintIndex": 714,
                "paintSeed": 483,
                "levelName": "",
                "levelColor": "",
                "gradient": "0.0",
                "fadeColor": "",
                "inspectImageUrl": null,
                "gems": [],
                "stickers": [
                    {
                        "id": "6673",
                        "type": 0,
                        "stickerId": "6673",
                        "itemId": "1128414422777688064",
                        "name": "Team Liquid(闪耀)| 2023年巴黎锦标赛",
                        "enName": "Team Liquid (Glitter) | Paris 2023",
                        "image": "https://img.zbt.com/c/sticker/6673.png",
                        "slot": 3,
                        "wear": "0.0",
                        "price": null
                    },
                    {
                        "id": "6673",
                        "type": 0,
                        "stickerId": "6673",
                        "itemId": "1128414422777688064",
                        "name": "Team Liquid(闪耀)| 2023年巴黎锦标赛",
                        "enName": "Team Liquid (Glitter) | Paris 2023",
                        "image": "https://img.zbt.com/c/sticker/6673.png",
                        "slot": 4,
                        "wear": "0.0",
                        "price": null
                    },
                    {
                        "id": "6673",
                        "type": 0,
                        "stickerId": "6673",
                        "itemId": "1128414422777688064",
                        "name": "Team Liquid(闪耀)| 2023年巴黎锦标赛",
                        "enName": "Team Liquid (Glitter) | Paris 2023",
                        "image": "https://img.zbt.com/c/sticker/6673.png",
                        "slot": 4,
                        "wear": "0.0",
                        "price": null
                    },
                    {
                        "id": "6673",
                        "type": 0,
                        "stickerId": "6673",
                        "itemId": "1128414422777688064",
                        "name": "Team Liquid(闪耀)| 2023年巴黎锦标赛",
                        "enName": "Team Liquid (Glitter) | Paris 2023",
                        "image": "https://img.zbt.com/c/sticker/6673.png",
                        "slot": 4,
                        "wear": "0.0",
                        "price": null
                    },
                    {
                        "id": "6674",
                        "type": 0,
                        "stickerId": "6674",
                        "itemId": "1128428272094199808",
                        "name": "Team Liquid(全息)| 2023年巴黎锦标赛",
                        "enName": "Team Liquid (Holo) | Paris 2023",
                        "image": "https://img.zbt.com/c/sticker/6674.png",
                        "slot": 4,
                        "wear": "0.0",
                        "price": null
                    }
                ],
                "styles": [],
                "itemSets": [],
                "ext": "",
                "fraudwarning": ""
            },
            "itemInfo": {
                "quality": "",
                "qualityName": "",
                "qualityColor": "",
                "rarity": "rarity_legendary_weapon",
                "rarityName": "保密",
                "rarityColor": "#D32CE6",
                "type": "csgo_type_rifle",
                "typeName": "步枪",
                "slot": "",
                "slotName": "",
                "hero": "",
                "heroName": "",
                "heroAvatar": "",
                "exterior": "wearcategory0",
                "exteriorName": "崭新出厂",
                "exteriorColor": "#59F27F",
                "weapon": "weapon_m4a1_silencer",
                "weaponName": "M4A1 消音型",
                "itemSet": "set_community_20",
                "itemSetName": "地平线收藏品",
                "stickerCapsule": "",
                "stickerCapsuleName": "",
                "patchCapsule": "",
                "patchCapsuleName": "",
                "customPlayer": "",
                "customPlayerName": "",
                "category": "",
                "categoryName": "",
                "item": "",
                "itemName": null
            },
            "wearRank": null
        }
    ],
    "errorCode": 0,
    "errorMsg": null,
    "errorData": null
}
Modified at 2026-08-04 06:24:48
Previous
Check items status updates
Next
Get listing details by product ID
Built with