Marketplace
No threads yet
Live

get_depot_details

steam.assiw.xyz

Returns depot IDs, decryption keys, and optional manifest IDs for a Steam application from https://steam.assiw.xyz. Reports input_not_found when the app ID is absent from the site's catalog.

Parameters1
Runs10
Updated10d ago
Operational10 runs · 100% succeeded
30 days agotoday

Playground

Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.

What is get_depot_details?

Returns depot IDs, decryption keys, and optional manifest IDs for a Steam application from https://steam.assiw.xyz. Reports input_not_found when the app ID is absent from the site's catalog. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass app_id and get the result back without maintaining a scraper.

Response

{
  "app_id": "<string>",
  "depots": [
    {
      "depot_id": "<string>",
      "manifest_id": "<string>",
      "decryption_key": "<string>"
    }
  ],
  "input_not_found": true
}

Call it

curl --location 'https://us-prod.notte.cc/functions/0ff517a6-dd7a-4d59-b2d8-b2cf29e1f609/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "0ff517a6-dd7a-4d59-b2d8-b2cf29e1f609",
    "variables": {
        "app_id": "730"
    }
}'

Ask an agent

Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.

prompt
Use the Anything API MCP server (https://anything.notte.cc/mcp).

Call run(function_id="0ff517a6-dd7a-4d59-b2d8-b2cf29e1f609") — the "get_depot_details" function, which returns depot IDs, decryption keys, and optional manifest IDs for a Steam application from https://steam.assiw.xyz. Reports input_not_found when the app ID is absent from the site's catalog..

It takes app_id (str). Return the result as structured JSON.