search_products
krasnoeibeloe.ruSearches the Krasnoe & Beloe catalog at https://krasnoeibeloe.ru by product name or keyword. Returns one page of product metadata with XML IDs, regional pricing, ratings, and stock summaries.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_products?
Searches the Krasnoe & Beloe catalog at https://krasnoeibeloe.ru by product name or keyword. Returns one page of product metadata with XML IDs, regional pricing, ratings, and stock summaries. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query, city_id and get the result back without maintaining a scraper.
Response
{
"count": 0,
"query": "<string>",
"city_id": 0,
"products": [
{
"url": "<string>",
"name": "<string>",
"xml_id": "<string>",
"product_id": 0
}
],
"page_type": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/0017b22f-dd1f-4324-82fc-73e39cd61636/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "0017b22f-dd1f-4324-82fc-73e39cd61636",
"variables": {
"query": "Водка Медведь",
"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.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="0017b22f-dd1f-4324-82fc-73e39cd61636") — the "search_products" function, which searches the Krasnoe & Beloe catalog at https://krasnoeibeloe.ru by product name or keyword. Returns one page of product metadata with XML IDs, regional pricing, ratings, and stock summaries.. It takes query (str), city_id (int). Return the result as structured JSON.