Discover/Assiw API
live

Assiw APIsteam.assiw.xyz

Access detailed Steam depot information including depot IDs, keys, and manifest IDs for any Steam application. Retrieve this technical data to manage game installations, analyze Steam's file structure, or integrate Steam app details into your applications.

This API takes change requests — .
Endpoint health
monitored
get_depot_info
Checks pendingself-healing
Endpoints
1
Updated
4h ago
This call costs2 credits / call— charged only on success
Try it
Numeric Steam App ID (e.g. '4000' for Garry's Mod, '730' for Counter-Strike 2).
api.parse.bot/scraper/4d88b789-fd80-416a-b3f1-9ad6f6595776/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/4d88b789-fd80-416a-b3f1-9ad6f6595776/get_depot_info?app_id=4000' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 1 totalmissing one? ·

Returns depot IDs, depot decryption keys, and manifest IDs for a Steam application. The endpoint authenticates, downloads the manifest data, and parses the embedded lua script to extract depot information. Each depot entry includes the depot ID, its decryption key, and an optional manifest ID. The first depot typically shares the app ID and has no manifest ID. Returns input_not_found when the app ID is not in the service's catalog.

Input
ParamTypeDescription
app_idrequiredstringNumeric Steam App ID (e.g. '4000' for Garry's Mod, '730' for Counter-Strike 2).
Response
{
  "type": "object",
  "fields": {
    "app_id": "string — the Steam App ID",
    "depots": "array of depot objects, each with depot_id, depot_key, and manifest_id"
  },
  "sample": {
    "data": {
      "app_id": "4000",
      "depots": [
        {
          "depot_id": "4000",
          "depot_key": "REDACTED_SECRET",
          "manifest_id": null
        },
        {
          "depot_id": "4001",
          "depot_key": "REDACTED_SECRET",
          "manifest_id": "220404784471597770"
        },
        {
          "depot_id": "4003",
          "depot_key": "REDACTED_SECRET",
          "manifest_id": "1075478557630448531"
        },
        {
          "depot_id": "4002",
          "depot_key": "REDACTED_SECRET",
          "manifest_id": "8989514576105529138"
        },
        {
          "depot_id": "4004",
          "depot_key": "REDACTED_SECRET",
          "manifest_id": "2562883153234512593"
        }
      ]
    },
    "status": "success"
  }
}

About the Assiw API

The Assiw API on Parse exposes 1 endpoint for the publicly available data on steam.assiw.xyz. Calls return JSON over HTTPS and are billed per successful response.

Pin a release with the API-Snapshot-Version header so canonical updates don't silently change your contract.