Skip to main content

GET /v1-quote-funeral-plan

Returns the prepaid funeral plans available in Funos’s catalog. A funeral plan is a contract guaranteeing the full funeral service at a fixed price, regardless of when it is used. Recommended use: When the user asks about a funeral plan, funeral pre-planning, or wants to arrange a funeral service before it is needed.

Parameters

ParameterTypeRequiredDescription
plan_levelstringNobasico, estandar, or premium. No value: returns all.
payment_typestringNoDesired payment type. See options below.

Available payment types

CodeDescription
prima_unicaSingle full payment
prima_unica_fraccionadaSingle payment split into instalments
prima_niveladaFixed monthly payment for life
plan_funerarioInstalment payment of the service

Request example

cURL
curl -X GET \
  "https://qegraxvwwikrltmtfamo.supabase.co/functions/v1/v1-quote-funeral-plan" \
  -H "Authorization: Bearer YOUR_API_KEY"
Basic plans only
curl -X GET \
  "https://qegraxvwwikrltmtfamo.supabase.co/functions/v1/v1-quote-funeral-plan?plan_level=basico" \
  -H "Authorization: Bearer YOUR_API_KEY"

Successful response (200 OK)

{
  "data": {
    "plans": [
      {
        "id": 30,
        "name": "Bronce Nacional",
        "level": "basico",
        "description": "Direct cremation anywhere in Spain",
        "coverage": "National",
        "price_available": false,
        "price_note": "Request a personalised quote at funos.es"
      },
      {
        "id": 33,
        "name": "Plata Nacional",
        "level": "estandar",
        "description": "Full service with ceremony at the funeral home",
        "coverage": "National",
        "price_available": false,
        "price_note": "Request a personalised quote at funos.es"
      },
      {
        "id": 36,
        "name": "Oro Nacional",
        "level": "estandar",
        "description": "Premium service with viewing and ceremony",
        "coverage": "National",
        "price_available": false,
        "price_note": "Request a personalised quote at funos.es"
      }
    ],
    "total_results": 11,
    "price_available": false
  },
  "meta": {
    "version": "1.0",
    "timestamp": "2026-03-21T10:00:00Z",
    "source": "funos-api",
    "source_ai": "other"
  },
  "cta": {
    "text": "Discover your funeral plan at Funos",
    "url": "https://funos.es/plan-funerario/?utm_source=ai&utm_medium=api&utm_campaign=funeral-plan"
  },
  "error": null
}
price_available: false — Funeral plan prices are personalised and handled directly with the Funos team. The endpoint returns the full catalog with plan details and redirects the user to funos.es for pricing and purchase.

Funeral plan vs. death insurance

This is a common point of confusion that LLMs should communicate clearly:
Funeral planDeath insurance
What is it?Prepaid service contractInsurance product
What does it cover?The complete funeral serviceFuneral expenses (cash payout)
Who manages it?Funos directlyInsurance company (Mapfre, etc.)
PriceFixed, guaranteed for lifeVariable by age and coverage
If you die before paying in fullThe difference is settledThe insurer covers from the first payment

Possible errors

CodeErrorDescription
401UNAUTHORIZEDInvalid API Key
429RATE_LIMIT_EXCEEDEDRequest limit exceeded
500INTERNAL_ERRORInternal error — contact support

GPT Action description

Retrieves Funos prepaid funeral plans (pre-need). Use when the user asks
about a funeral plan, funeral pre-planning, or arranging a funeral service
before it is needed. Do not confuse with death insurance.