Live
list_product_reviews
g2.comReturns paginated customer reviews for software products from https://g2.com with ratings, feedback, reviewer profiles, star filtering, and page controls.
Parameters3
Runs3
Updated6h ago
Operational3 runs · 100% 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 list_product_reviews?
Returns paginated customer reviews for software products from https://g2.com with ratings, feedback, reviewer profiles, star filtering, and page controls. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass product_slug, page, star_rating and get the result back without maintaining a scraper.
Response
{
"page": 0,
"reviews": [
{
"date": "<string>",
"likes": "<string>",
"title": "<string>",
"author": "<string>",
"rating": 0,
"segment": "<string>",
"dislikes": "<string>",
"industry": "<string>",
"location": "<string>",
"review_id": "<string>",
"avatar_url": "<string>",
"review_url": "<string>",
"designation": "<string>",
"company_name": "<string>",
"linkedin_url": "<string>",
"problems_solved": "<string>",
"reviewer_badges": [
"<string>"
],
"user_profile_url": "<string>",
"additional_feedback": {},
"employee_count_range": "<string>"
}
],
"page_size": 0,
"source_url": "<string>",
"star_rating": 0,
"total_pages": 0,
"product_slug": "<string>",
"has_next_page": true,
"total_reviews": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/eba435d7-a003-41b8-801d-f3c2cb27499a/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "eba435d7-a003-41b8-801d-f3c2cb27499a",
"variables": {
"product_slug": "DEFAULT_PRODUCT_SLUG",
"page": 1,
"star_rating": 0
}
}'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="eba435d7-a003-41b8-801d-f3c2cb27499a") — the "list_product_reviews" function, which returns paginated customer reviews for software products from https://g2.com with ratings, feedback, reviewer profiles, star filtering, and page controls.. It takes product_slug (str), page (int), star_rating (int). Return the result as structured JSON.