Marketplace
No threads yet
Live

get_product_details

krasnoeibeloe.ru

Extracts product identifiers and current stock fields from a https://krasnoeibeloe.ru catalog page slug, including its resolved URL, XML ID, and detected city.

Parameters1
Runs5
Updated3d ago
Operational5 runs · 100% succeeded
30 days agotoday

Playground

Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.

What is get_product_details?

Extracts product identifiers and current stock fields from a https://krasnoeibeloe.ru catalog page slug, including its resolved URL, XML ID, and detected city. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass url_slug and get the result back without maintaining a scraper.

Response

{
  "price": 0,
  "amount": 0,
  "xml_id": "<string>",
  "city_id": 0,
  "shopNum": "<string>",
  "avgAmount": 0,
  "is_yellow": true,
  "product_id": 0,
  "shopAmount": 0,
  "amountMore1": true,
  "storeAmount": 0,
  "resolved_url": "<string>",
  "priceByRegion": 0,
  "availableRegion": true,
  "total_stock_amount": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/49d03fc2-f022-4582-9a06-edb3799a01e1/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "49d03fc2-f022-4582-9a06-edb3799a01e1",
    "variables": {
        "url_slug": "DEFAULT_SLUG"
    }
}'

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="49d03fc2-f022-4582-9a06-edb3799a01e1") — the "get_product_details" function, which extracts product identifiers and current stock fields from a https://krasnoeibeloe.ru catalog page slug, including its resolved URL, XML ID, and detected city..

It takes url_slug (str). Return the result as structured JSON.