Discover/CelebraTodo API
live

CelebraTodo APIcelebratodo.cl

Access CelebraTodo's pricing plans, features, and add-on services via API. Retrieve plan names, CLP prices, feature lists, and additional services in one call.

This API takes change requests — .
Endpoint health
verified 4d ago
get_plans
1/1 passing latest checkself-healing
Endpoints
1
Updated
18d ago

What is the CelebraTodo API?

The CelebraTodo API exposes 1 endpoint — get_plans — that returns the full set of pricing plans for this Chilean digital event organization platform, including per-plan prices in CLP, feature inclusion/exclusion lists, optional badges, and available add-on services. The response also includes a duration note and supports a lang parameter for localized content, making it straightforward to display or compare plan data in any language.

This call costs1 credit / call— charged only on success
Try it
Language for plan names, descriptions, and features.
api.parse.bot/scraper/13a5a3f7-b096-4e8b-b1ec-7229438b6fc9/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/13a5a3f7-b096-4e8b-b1ec-7229438b6fc9/get_plans?lang=es' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace celebratodo-cl-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Walkthrough: CelebraTodo SDK — bounded, re-runnable; every call capped."""
from parse_apis.celebratodo_cl_api import CelebraTodo, Lang, ParseError

client = CelebraTodo()

# Fetch pricing plans in Spanish (default)
pricing = client.pricings.get(lang=Lang.ES)

# Inspect each plan
for plan in pricing.plans:
    print(plan.name, plan.price, plan.currency)
    for feature in plan.features:
        print(f"  {'✓' if feature.included else '✗'} {feature.name}")

# Check additional services
for svc in pricing.additional_services:
    print(svc.name, svc.description)

# Fetch in English
try:
    en_pricing = client.pricings.get(lang=Lang.EN)
    print(en_pricing.plans[0].name, en_pricing.duration_note)
except ParseError as e:
    print(f"error: {e}")

print("exercised: pricings.get")
All endpoints · 1 totalmissing one? ·

Retrieve available pricing plans, their features, and additional services. Each plan includes a price in CLP, a list of included/excluded features, and an optional badge. Additional services are listed separately. Content is returned in the requested language.

Input
ParamTypeDescription
langstringLanguage for plan names, descriptions, and features.
Response
{
  "type": "object",
  "fields": {
    "plans": "array of plan objects with name, price, currency, description, badge, and features",
    "duration_note": "informational note about plan duration",
    "additional_services": "array of add-on service objects with name and description"
  },
  "sample": {
    "data": {
      "plans": [
        {
          "name": "Esencial",
          "badge": null,
          "price": 18990,
          "currency": "CLP",
          "features": [
            {
              "name": "Página pública del evento",
              "included": true
            },
            {
              "name": "Lista de invitados",
              "included": true
            },
            {
              "name": "Lista de regalos",
              "included": true
            },
            {
              "name": "Galeria de fotos",
              "included": false
            },
            {
              "name": "Mensajes",
              "included": false
            },
            {
              "name": "Organizador de mesas",
              "included": false
            }
          ],
          "description": "Para quienes necesitan lo importante, sin extras innecesarios."
        },
        {
          "name": "Premium",
          "badge": "Más elegido",
          "price": 32990,
          "currency": "CLP",
          "features": [
            {
              "name": "Página pública del evento",
              "included": true
            },
            {
              "name": "Lista de invitados",
              "included": true
            },
            {
              "name": "Lista de regalos",
              "included": true
            },
            {
              "name": "Galeria de fotos",
              "included": true
            },
            {
              "name": "Mensajes",
              "included": true
            },
            {
              "name": "Organizador de mesas",
              "included": true
            }
          ],
          "description": "La opción completa para presentar mejor tu evento y gestionarlo con más orden."
        }
      ],
      "duration_note": "El Plan Esencial y Premium te acompaña durante 12 meses. Si tu celebración necesita más tiempo, puedes extender cualquiera de los dos planes y mantener tu evento activo sin interrupciones.",
      "additional_services": [
        {
          "name": "Galería QR",
          "description": "Fotos colaborativas por QR para invitados"
        },
        {
          "name": "Solicitud de Canciones",
          "description": "Recibe sugerencias musicales antes del evento"
        },
        {
          "name": "Cuenta Regresiva",
          "description": "Destaca el tiempo que falta para el gran día"
        },
        {
          "name": "Organizador de Mesas",
          "description": "Ordena invitados y mesas desde el panel"
        }
      ]
    },
    "status": "success"
  }
}

About the CelebraTodo API

What the API Returns

The single get_plans endpoint returns all pricing tiers offered by CelebraTodo, a digital event organization platform operating in Chile. Each plan object in the plans array includes a name, price (in CLP), currency, description, an optional badge (e.g. a highlighted or recommended marker), and a features list that explicitly marks which capabilities are included or excluded in that tier.

Plan Features and Add-On Services

The features field within each plan object lets you distinguish exactly which capabilities a given tier covers versus omits — useful when building a comparison table or a pricing recommendation tool. Beyond the core plans, the response includes an additional_services array listing optional add-ons, each with a name and description. A top-level duration_note field provides context about how long plans are valid.

Localization Support

The endpoint accepts an optional lang string parameter. When supplied, plan names, descriptions, and feature labels are returned in the requested language, allowing applications targeting different-language audiences to present localized pricing copy without a separate translation step.

Reliability & maintenanceVerified

The CelebraTodo API is a managed, monitored endpoint for celebratodo.cl — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when celebratodo.cl changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official celebratodo.cl API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
4d ago
Latest check
1/1 endpoint passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Build a pricing comparison table for CelebraTodo plans using the features inclusion/exclusion data
  • Display localized plan names and descriptions for Spanish or English audiences via the lang parameter
  • Surface the badge field to highlight a recommended or featured plan in a UI
  • List available add-on services from additional_services alongside core plan options
  • Monitor CLP price changes across plan tiers over time by polling get_plans periodically
  • Feed plan and feature data into a chatbot or recommendation engine to suggest the right tier for event organizers
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo2005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min
Team$300/mo20,000300 req/min
Company$1,000/mo100,000500 req/min

Each endpoint has a fixed posted price per successful call — most fall between 1 and 10 credits — shown on this API's page before you run it. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does CelebraTodo have an official developer API?+
CelebraTodo does not publish a documented public developer API. This Parse API provides structured access to their plan and pricing data.
What exactly does the `get_plans` endpoint return?+
It returns a plans array (each entry has name, price, currency, description, badge, and features), a duration_note string, and an additional_services array where each item has a name and description. All text fields reflect the language requested via the lang parameter.
Does the API return data for individual events or bookings created on CelebraTodo?+
No. The API currently covers pricing plans, plan features, and add-on services only — it does not expose event listings, booking records, or user account data. You can fork this API on Parse and revise it to add an endpoint targeting that data.
Are all plan prices returned in Chilean pesos?+
Yes, the price field in each plan object is denominated in CLP as indicated by the currency field. The API does not currently return prices in other currencies. You can fork it on Parse and add conversion logic or a currency parameter to the endpoint if you need multi-currency output.
How current is the plan and pricing data?+
The response reflects CelebraTodo's publicly listed plans at the time of the request. CelebraTodo may update their pricing or plan structure at any time; there is no change-notification or webhook mechanism — you would need to poll get_plans to detect updates.
Page content last updated . Spec covers 1 endpoint from celebratodo.cl.
Related APIs in EntertainmentSee all →
puntoticket.com API
Browse and search events happening in Chile with PuntoTicket, viewing featured shows, filtering by category, and checking detailed pricing and availability for concerts, theater, sports, and more. Find the perfect event by exploring all listings or discovering what's trending right now.
cinemark.cl API
Discover movies playing at Cinemark Chile cinemas, check showtimes and ticket prices, browse concession options, and explore current promotions and rewards program details. Plan your cinema visit by searching available theaters, viewing movie information, and accessing exclusive deals all in one place.
corfo.cl API
Access Chilean government funding programs, open calls (convocatorias), and press releases from CORFO to discover financial support opportunities and institutional updates. Filter by region, status, and profile to retrieve details on available grants, eligibility criteria, funding amounts, and application procedures.
adidas.cl API
Browse and search Adidas Chile's product catalog by filtering across gender, sport, and category options, then view detailed information for any item including pricing and specifications. Access complete product listings with full pagination support to explore the entire collection.
lider.cl API
Search and browse products from Lider Supermercado's catalog to compare prices, explore categories, and check real-time availability across Chile. Get detailed product information including pricing and category organization to help you shop efficiently online or in-store.
chileautos.cl API
Search car listings and get detailed vehicle information from Chile's largest auto marketplace, including brands, specifications, and pricing. Find your next vehicle by browsing available cars with complete details all in one place.
jetpacglobal.com API
Compare eSIM data plans across 200+ destinations through Jetpac Global, viewing pricing, data amounts, plan durations, and unlimited options all in one place. Make informed decisions about international connectivity by instantly accessing the best available plans for your travel destination.
pricechecker.com API
Search and compare products listed on PriceCheck, including internet plans, data contracts, and electronics. Retrieve detailed pricing, specifications, and contract terms, and compare multiple listings side-by-side across providers.