Live
get_pricing_plans
celebratodo.clReturns CelebraTodo pricing plans with CLP prices, included and excluded features, badges, checkout details, and additional services in Spanish or English from https://celebratodo.cl.
Parameters1
Runs4
Updated1d ago
Operational4 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_pricing_plans?
Returns CelebraTodo pricing plans with CLP prices, included and excluded features, badges, checkout details, and additional services in Spanish or English from https://celebratodo.cl. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass language and get the result back without maintaining a scraper.
Response
{
"plans": [
{
"name": "<string>",
"badge": "<string>",
"price": 0,
"duration": "<string>",
"action_label": "<string>",
"availability": "<string>",
"checkout_url": "<string>",
"checkout_note": "<string>",
"display_price": "<string>",
"price_currency": "<string>",
"excluded_features": [
"<string>"
],
"included_features": [
"<string>"
]
}
],
"language": "<string>",
"source_url": "<string>",
"payment_note": "<string>",
"additional_services": [
{
"name": "<string>",
"purchase_terms": "<string>"
}
],
"additional_services_heading": "<string>",
"additional_services_description": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/ca674013-4fd9-4c3c-8068-b1479a6865b3/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "ca674013-4fd9-4c3c-8068-b1479a6865b3",
"variables": {
"language": "es"
}
}'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="ca674013-4fd9-4c3c-8068-b1479a6865b3") — the "get_pricing_plans" function, which returns CelebraTodo pricing plans with CLP prices, included and excluded features, badges, checkout details, and additional services in Spanish or English from https://celebratodo.cl.. It takes language (str). Return the result as structured JSON.