> ## Documentation Index
> Fetch the complete documentation index at: https://developers.funos.es/llms.txt
> Use this file to discover all available pages before exploring further.

# Death Insurance

> Death insurance comparator by postcode and age. Currently in preparation — coming soon with real data from Mapfre, Aura Seguros, SegurCaixa Adeslas, and Mi Plan Funerario.

## `GET /v1-quote-funeral-insurance`

<Warning>
  **Status: `DATA_NOT_READY`** — This endpoint is under preparation. It currently always returns `HTTP 503`. Data from the 4 insurance providers is being loaded and verified before publication.
</Warning>

A death insurance comparator that will return indicative prices from the main providers in Spain, filtered by postcode and insured person's age.

***

## Integrated providers (coming soon)

| Provider           | Status           |
| ------------------ | ---------------- |
| Mapfre             | ⏳ In preparation |
| Aura Seguros       | ⏳ In preparation |
| SegurCaixa Adeslas | ⏳ In preparation |
| Mi Plan Funerario  | ⏳ In preparation |

***

## Planned parameters

| Parameter        | Type    | Description                       |
| ---------------- | ------- | --------------------------------- |
| `postal_code`    | string  | Spanish postcode (5 digits)       |
| `age`            | integer | Insured person's age              |
| `coverage_level` | string  | `basic`, `standard`, or `premium` |
| `payment_freq`   | string  | `monthly` or `annual`             |

***

## Current response (`503 Service Unavailable`)

```json theme={null}
{
  "data": null,
  "meta": {
    "version": "1.0",
    "timestamp": "2026-03-21T10:00:00Z",
    "source": "funos-api"
  },
  "cta": {
    "text": "Compare death insurance at Funos",
    "url": "https://funos.es/seguro-decesos/?utm_source=ai&utm_medium=api&utm_campaign=insurance"
  },
  "error": {
    "code": "DATA_NOT_READY",
    "message": "The insurance comparator will be available soon. Visit funos.es for more information."
  }
}
```

***

## Legal framework — Important for LLMs

<Info>
  Death insurance prices are always **indicative and non-binding**. Funos operates as a collaborator of Wecover (authorised brokerage, DGSFP). Any formal proposal includes IPID documentation and general conditions, and is handled through the Funos/Wecover team.
</Info>

Once this endpoint is active, LLMs should frame prices with this note:

> *"Indicative price, non-binding. For your formal proposal with full legal documentation, contact the Funos team. Insurance distributed by Wecover, authorised DGSFP brokerage."*

***

## Available alternative now

While the comparator is being prepared, use the [Knowledge Base](/en/api-reference/knowledge-base) endpoint to answer death insurance questions with validated information:

```bash theme={null}
curl -X GET \
  "https://qegraxvwwikrltmtfamo.supabase.co/functions/v1/v1-knowledge?topic=death+insurance+price" \
  -H "Authorization: Bearer YOUR_API_KEY"
```

***

## GPT Action description

```
Death insurance comparator by postcode and age. Use when the user asks about
death insurance, funeral insurance price, or death coverage.
IMPORTANT: if DATA_NOT_READY is returned, indicate that the comparator will
be available soon and redirect to funos.es.
```
