Live
list_highest_rated_games
steamdb.infoReturns the highest-rated Steam games from https://steamdb.info with SteamDB rating percentages, review totals, follower counts, release data, prices, and peak players.
Parameters1
Runs7
Updated3d ago
Operational7 runs · 100% succeeded
30 days ago90 days agoranfailednot checkedtoday
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is list_highest_rated_games?
Returns the highest-rated Steam games from https://steamdb.info with SteamDB rating percentages, review totals, follower counts, release data, prices, and peak players. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass limit and get the result back without maintaining a scraper.
Response
{
"count": 0,
"games": [
{
"name": "<string>",
"rank": 0,
"price": "<string>",
"app_id": 0,
"followers": 0,
"image_url": "<string>",
"steamdb_url": "<string>",
"peak_players": 0,
"product_type": "<string>",
"release_date": "<string>",
"review_count": 0,
"discount_percent": 0,
"steamdb_rating_percent": 0
}
],
"source_url": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/3c564a03-1fda-442a-9aad-e3258448d111/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "3c564a03-1fda-442a-9aad-e3258448d111",
"variables": {
"limit": 25
}
}'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="3c564a03-1fda-442a-9aad-e3258448d111") — the "list_highest_rated_games" function, which returns the highest-rated Steam games from https://steamdb.info with SteamDB rating percentages, review totals, follower counts, release data, prices, and peak players.. It takes limit (int). Return the result as structured JSON.