Marketplace
No threads yet
Live

get_build_manifest

steamdb.info

Returns build date, time, title, app context, and every depot manifest ID for a Steam build from https://steamdb.info.

Parameters1
Runs7
Updated3d ago
Operational7 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_build_manifest?

Returns build date, time, title, app context, and every depot manifest ID for a Steam build from https://steamdb.info. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass build_id and get the result back without maintaining a scraper.

Response

{
  "title": "<string>",
  "app_id": 0,
  "depots": [
    {
      "depot_id": 0,
      "depot_url": "<string>",
      "manifest_id": "<string>",
      "depot_history_url": "<string>"
    }
  ],
  "build_id": 0,
  "is_major": true,
  "game_name": "<string>",
  "source_url": "<string>",
  "published_at": "<string>",
  "publication_day": "<string>",
  "publication_date": "<string>",
  "publication_time_utc": "<string>",
  "has_official_patch_notes": true
}

Call it

curl --location 'https://us-prod.notte.cc/functions/5a1e008b-c6ee-40dc-a01f-67127a6416dd/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "5a1e008b-c6ee-40dc-a01f-67127a6416dd",
    "variables": {
        "build_id": 24575825
    }
}'

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="5a1e008b-c6ee-40dc-a01f-67127a6416dd") — the "get_build_manifest" function, which returns build date, time, title, app context, and every depot manifest ID for a Steam build from https://steamdb.info..

It takes build_id (int). Return the result as structured JSON.