Marketplace
No threads yet
Live

list_category_products

g2.com

Returns paginated software products in a G2 category from https://g2.com with names, slugs, ratings and review counts.

Parameters2
Runs5
Updated5h ago
Degraded5 runs · 80% 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 list_category_products?

Returns paginated software products in a G2 category from https://g2.com with names, slugs, ratings and review counts. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass category_slug, page and get the result back without maintaining a scraper.

Response

{
  "page": 0,
  "count": 0,
  "products": [
    {
      "name": "<string>",
      "slug": "<string>",
      "rating": 0,
      "review_count": 0
    }
  ],
  "source_url": "<string>",
  "category_slug": "<string>",
  "has_next_page": true
}

Call it

curl --location 'https://us-prod.notte.cc/functions/d2347bab-6b16-4e6e-8cc9-a57ead5484e5/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "d2347bab-6b16-4e6e-8cc9-a57ead5484e5",
    "variables": {
        "category_slug": "DEFAULT_CATEGORY_SLUG",
        "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="d2347bab-6b16-4e6e-8cc9-a57ead5484e5") — the "list_category_products" function, which returns paginated software products in a G2 category from https://g2.com with names, slugs, ratings and review counts..

It takes category_slug (str), page (int). Return the result as structured JSON.