Live
list_city_shops
krasnoeibeloe.ruReturns all shops in a city from https://krasnoeibeloe.ru with addresses, coordinates, working hours, alcohol sale hours, shop IDs, and shop numbers.
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_city_shops?
Returns all shops in a city from https://krasnoeibeloe.ru with addresses, coordinates, working hours, alcohol sale hours, shop IDs, and shop numbers. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass city_id and get the result back without maintaining a scraper.
Response
{
"shops": [
{
"id": 0,
"lat": "<string>",
"lng": "<string>",
"num": "<string>",
"time": "<string>",
"cityId": 0,
"address": "<string>",
"alcTime": {},
"shopNum": "<string>",
"workTime": {},
"draftBeer": true,
"noAlcohol": true,
"addressAlt": "<string>"
}
],
"city_id": 0,
"shop_count": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/ddd0bf30-170b-4aa9-90e6-1a9c11ae4cea/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "ddd0bf30-170b-4aa9-90e6-1a9c11ae4cea",
"variables": {
"city_id": 1433
}
}'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="ddd0bf30-170b-4aa9-90e6-1a9c11ae4cea") — the "list_city_shops" function, which returns all shops in a city from https://krasnoeibeloe.ru with addresses, coordinates, working hours, alcohol sale hours, shop IDs, and shop numbers.. It takes city_id (int). Return the result as structured JSON.