Marketplace
No threads yet
Live

search_products

gorgia.ge

Searches or browses products on https://gorgia.ge and returns paginated listings with product IDs, URL paths, prices, availability, discounts, and images.

Parameters5
Runs4
Updated6h ago
Operational4 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 search_products?

Searches or browses products on https://gorgia.ge and returns paginated listings with product IDs, URL paths, prices, availability, discounts, and images. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query, category, start_page, max_pages, items_per_page and get the result back without maintaining a scraper.

Response

{
  "mode": "<string>",
  "count": 0,
  "source": "<string>",
  "request": {},
  "products": [
    {}
  ],
  "pagination": {}
}

Call it

curl --location 'https://us-prod.notte.cc/functions/79157cc1-907d-4f56-bd52-f1bd33eeca30/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "79157cc1-907d-4f56-bd52-f1bd33eeca30",
    "variables": {
        "query": "",
        "category": "DEFAULT_CATEGORY",
        "start_page": 1,
        "max_pages": 2,
        "items_per_page": 24
    }
}'

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="79157cc1-907d-4f56-bd52-f1bd33eeca30") — the "search_products" function, which searches or browses products on https://gorgia.ge and returns paginated listings with product IDs, URL paths, prices, availability, discounts, and images..

It takes query (str), category (str), start_page (int), max_pages (int), items_per_page (int). Return the result as structured JSON.