Live
get_product_pricing
g2.comReturns pricing plans and feature lists for software products from https://g2.com, including plan prices, billing periods, descriptions, and availability.
Parameters1
Runs3
Updated5h 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 get_product_pricing?
Returns pricing plans and feature lists for software products from https://g2.com, including plan prices, billing periods, descriptions, and availability. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass product_slug and get the result back without maintaining a scraper.
Response
{
"plans": [
{
"name": "<string>",
"price": "<string>",
"features": [
"<string>"
],
"description": "<string>",
"billing_period": "<string>"
}
],
"source_url": "<string>",
"has_pricing": true,
"product_name": "<string>",
"product_slug": "<string>",
"pricing_last_updated": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/14907c28-bd1c-463e-88c6-de8aa48b9e36/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "14907c28-bd1c-463e-88c6-de8aa48b9e36",
"variables": {
"product_slug": "DEFAULT_PRODUCT_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="14907c28-bd1c-463e-88c6-de8aa48b9e36") — the "get_product_pricing" function, which returns pricing plans and feature lists for software products from https://g2.com, including plan prices, billing periods, descriptions, and availability.. It takes product_slug (str). Return the result as structured JSON.