get_steam_promotions
steamdb.infoRetrieves currently active and upcoming Steam game promotions from https://steamdb.info as one flat list. Active records include images, store links, and exact time ranges; upcoming records include estimated dates.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_steam_promotions?
Retrieves currently active and upcoming Steam game promotions from https://steamdb.info as one flat list. Active records include images, store links, and exact time ranges; upcoming records include estimated dates. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — call it with no parameters and get the result back without maintaining a scraper.
Response
{
"count": 0,
"promotions": [
{
"name": "<string>",
"status": "active",
"ends_at": "<string>",
"image_url": "<string>",
"starts_at": "<string>",
"store_url": "<string>",
"promotion_type": "<string>"
}
],
"source_url": "<string>",
"retrieved_at": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/49bf3a3f-1a36-479b-bfc2-3f13536c1e5e/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "49bf3a3f-1a36-479b-bfc2-3f13536c1e5e",
"variables": {}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="49bf3a3f-1a36-479b-bfc2-3f13536c1e5e") — the "get_steam_promotions" function, which retrieves currently active and upcoming Steam game promotions from https://steamdb.info as one flat list. Active records include images, store links, and exact time ranges; upcoming records include estimated dates.. It takes no parameters. Return the result as structured JSON.