Live
search_companies
2gis.ruSearches https://2gis.ru for companies by name or category in a Russian city and returns paginated business records with contacts, categories, locations and ratings.
Parameters3
Runs4
Updated5h ago
Operational4 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 search_companies?
Searches https://2gis.ru for companies by name or category in a Russian city and returns paginated business records with contacts, categories, locations and ratings. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query, city, page and get the result back without maintaining a scraper.
Response
{
"city": {},
"page": 0,
"query": "<string>",
"results": [
{}
],
"page_size": 0,
"total_pages": 0,
"has_next_page": true,
"total_results": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/d5a11083-bfbf-41a4-9b41-fe0e6b978529/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "d5a11083-bfbf-41a4-9b41-fe0e6b978529",
"variables": {
"query": "кофейня",
"city": "Москва",
"page": 1
}
}'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="d5a11083-bfbf-41a4-9b41-fe0e6b978529") — the "search_companies" function, which searches https://2gis.ru for companies by name or category in a Russian city and returns paginated business records with contacts, categories, locations and ratings.. It takes query (str), city (str), page (int). Return the result as structured JSON.