CS2 Inspect API

Welcome to the CS2 Inspect API service. This API provides real-time inspection data for CS2 items including float values, pattern indexes, and sticker information.

Test

Please enter a valid CS2 inspect link (steam://rungame/...)

Endpoints

GET /inspect

Inspect a CS2 item using various input methods.

Query Parameters:

Example Requests:

GET /inspect?url=steam://rungame/730/76561202255233023/+csgo_econ_action_preview%20S76561198023809011A40368145941D14586214085613790969
GET /inspect?s=76561198023809011&a=40368145941&d=14586214085613790969

Example Response:

{
    "iteminfo": {
        "defindex": 16,
        "paintindex": 309,
        "rarity": 7,
        "quality": 4,
        "origin": 8,
        "floatvalue": 0.1572919487953186,
        "paintseed": 826,
        "wear_name": "Field-Tested",
        "market_hash_name": "M4A4 | Howl (Field-Tested)"
    }
}

POST /bulk

Process multiple CS2 items in a single request for bulk inspection.

Request Body:

{
    "items": [
        {
            "s": "76561198023809011",
            "a": "40368145941", 
            "d": "14586214085613790969",
            "m": "0",
            "refresh": false
        }
    ],
    "waitForAll": false,
    "lowPriority": false,
    "password": "optional-password"
}

Parameters: