Live
search_products
g2.comSearches https://g2.com for software products and returns names, slugs, ratings, review counts, descriptions, and product URLs.
Parameters1
Runs11
Updated5h ago
Degraded11 runs · 72.7% 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_products?
Searches https://g2.com for software products and returns names, slugs, ratings, review counts, descriptions, and product URLs. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query and get the result back without maintaining a scraper.
Response
{
"count": 0,
"query": "<string>",
"products": [
{
"url": "<string>",
"name": "<string>",
"slug": "<string>",
"rating": 0,
"description": "<string>",
"review_count": 0
}
],
"source_url": "<string>",
"result_type": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/09b44b1c-8153-42a4-8603-9f76880c9480/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "09b44b1c-8153-42a4-8603-9f76880c9480",
"variables": {
"query": "slack"
}
}'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="09b44b1c-8153-42a4-8603-9f76880c9480") — the "search_products" function, which searches https://g2.com for software products and returns names, slugs, ratings, review counts, descriptions, and product URLs.. It takes query (str). Return the result as structured JSON.