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
| Parameter | Type | Required | Description |
|---|
plan_level | string | No | basico, estandar, or premium. No value: returns all. |
payment_type | string | No | Desired payment type. See options below. |
Available payment types
| Code | Description |
|---|
prima_unica | Single full payment |
prima_unica_fraccionada | Single payment split into instalments |
prima_nivelada | Fixed monthly payment for life |
plan_funerario | Instalment payment of the service |
Request example
curl -X GET \
"https://qegraxvwwikrltmtfamo.supabase.co/functions/v1/v1-quote-funeral-plan" \
-H "Authorization: Bearer YOUR_API_KEY"
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 plan | Death insurance |
|---|
| What is it? | Prepaid service contract | Insurance product |
| What does it cover? | The complete funeral service | Funeral expenses (cash payout) |
| Who manages it? | Funos directly | Insurance company (Mapfre, etc.) |
| Price | Fixed, guaranteed for life | Variable by age and coverage |
| If you die before paying in full | The difference is settled | The insurer covers from the first payment |
Possible errors
| Code | Error | Description |
|---|
401 | UNAUTHORIZED | Invalid API Key |
429 | RATE_LIMIT_EXCEEDED | Request limit exceeded |
500 | INTERNAL_ERROR | Internal 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.