Marketplace
No threads yet
Live

get_comprehensive_app_metadata

steamdb.info

Returns comprehensive Steam app metadata, players, reviews, tags, genres, descriptors, languages, depots, branches, achievements, build manifests, and patch notes from https://steamdb.info.

Parameters2
Runs12
Updated4d ago
Degraded12 runs · 83.3% 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_comprehensive_app_metadata?

Returns comprehensive Steam app metadata, players, reviews, tags, genres, descriptors, languages, depots, branches, achievements, build manifests, and patch notes 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 app_id, patch_note_limit and get the result back without maintaining a scraper.

Response

{
  "tags": [
    {
      "url": "<string>",
      "name": "<string>",
      "tag_id": 0
    }
  ],
  "app_id": 0,
  "builds": [
    {
      "title": "<string>",
      "build_id": 0,
      "is_major": true,
      "patch_url": "<string>",
      "published_at": "<string>",
      "depot_manifests": [
        {
          "depot_id": 0,
          "depot_url": "<string>",
          "manifest_id": "<string>",
          "depot_history_url": "<string>"
        }
      ],
      "publication_day": "<string>",
      "publication_date": "<string>",
      "patch_notes_content": "<string>",
      "publication_time_utc": "<string>",
      "has_official_patch_notes": true,
      "official_patch_notes_url": "<string>"
    }
  ],
  "depots": [
    {
      "url": "<string>",
      "name": "<string>",
      "size": "<string>",
      "depot_id": 0,
      "platform": "<string>",
      "source_type": "<string>",
      "configuration": [
        "<string>"
      ],
      "download_size": "<string>"
    }
  ],
  "genres": [
    {
      "name": "<string>",
      "genre_id": 0
    }
  ],
  "players": {
    "current": 0,
    "peak_24h": 0,
    "all_time_peak": 0,
    "all_time_peak_at": "<string>"
  },
  "reviews": {
    "score_label": "<string>",
    "total_reviews": 0,
    "negative_reviews": 0,
    "positive_reviews": 0,
    "steamdb_rating_percent": 0,
    "negative_review_percent": 0,
    "positive_review_percent": 0
  },
  "branches": [
    {
      "name": "<string>",
      "build_id": 0,
      "built_at": "<string>",
      "updated_at": "<string>",
      "description": "<string>"
    }
  ],
  "metadata": {
    "name": "<string>",
    "app_type": "<string>",
    "image_url": "<string>",
    "developers": [
      "<string>"
    ],
    "publishers": [
      "<string>"
    ],
    "description": "<string>",
    "release_date": "<string>",
    "technologies": [
      "<string>"
    ],
    "last_changenumber": 0,
    "supported_systems": [
      "<string>"
    ],
    "last_record_update": "<string>"
  },
  "languages": [
    {
      "name": "<string>",
      "interface": true,
      "subtitles": true,
      "full_audio": true,
      "achievements": true
    }
  ],
  "source_url": "<string>",
  "achievements": [
    {
      "name": "<string>",
      "group": "<string>",
      "hidden": true,
      "added_at": "<string>",
      "added_on": "<string>",
      "api_name": "<string>",
      "image_url": "<string>",
      "description": "<string>",
      "unlock_percentage": 0
    }
  ],
  "content_descriptors": [
    {
      "name": "<string>",
      "descriptor_id": 0
    }
  ]
}

Call it

curl --location 'https://us-prod.notte.cc/functions/887194b9-6efa-4674-8926-47307a0819ef/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "887194b9-6efa-4674-8926-47307a0819ef",
    "variables": {
        "app_id": 1091500,
        "patch_note_limit": 5
    }
}'

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="887194b9-6efa-4674-8926-47307a0819ef") — the "get_comprehensive_app_metadata" function, which returns comprehensive Steam app metadata, players, reviews, tags, genres, descriptors, languages, depots, branches, achievements, build manifests, and patch notes from https://steamdb.info..

It takes app_id (int), patch_note_limit (int). Return the result as structured JSON.