/propertiesCreate a property
Registers a property from its cadastral reference. ciflow runs the enrichment pipeline (Catastro + Energy Performance Certificate + building inspection certificate). Enrichment that doesn't finish in time is retried and notified via the property.enriched webhook; unavailable fields come back as null without blocking the response.
Cuerpo de la petición
| Campo | Tipo | Descripción |
|---|---|---|
| cadastral_reference* | string | 14- or 20-character cadastral reference. Uniquely identifies the property in Catastro. |
Errores
| HTTP | Código | Cuándo |
|---|---|---|
| 400 | invalid_cadastral_reference | Invalid cadastral reference format. |
| 401 | missing_api_key | Missing or invalid X-API-Key header. |
| 422 | validation_error | The body does not match the expected schema. |
| 429 | rate_limited | Write limit exceeded (100 req/min). |
curl -X POST https://api.ciflow.net/api/v1/partner-api/properties \-H "X-API-Key: cf_live_xxxxxxxxxxxxxxxxxxxxxxxx" \-H "Content-Type: application/json" \-d '{"cadastral_reference": "9872023VH5797S0001WX"}'
{"property_id": "8f1c2d3e-4a5b-6c7d-8e9f-0a1b2c3d4e5f","address": "Calle Mayor 5","municipality": "Madrid","province": "Madrid","ccaa": "Comunidad de Madrid","year_built": 1978,"climate_zone": "D3","energy_certificate": { "rating": "E", "source": "estimated" },"ite_fetch_status": "ok"}