# French Real-Estate Investment Scorecard (analyse-immo)

> French Real-Estate Investment Scorecard (analyse-immo) is a paid API for AI agents from api.x-402.online, paid per call via x402, $0.08/call, status unknown (last checked 2026-09-14).

Returns a comprehensive real-estate investment scorecard for a French address, combining DVF price estimate, energy rating (DPE), natural risk exposure, local demographics, and rental yield estimate.

## Facts

- Endpoint: GET https://api.x-402.online/v1/fr/analyse-immo
- Price: $0.08/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/french-real-estate-investment-scorecard-analyse-immo-89d70b54
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_RxuEKK3D3Cim_JkNcLRV1

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability french-real-estate-investment-scorecard-analyse-immo-89d70b54
```

Example prompt: Can you run a full investment scorecard on a 65 m² apartment at 12 rue de la Paix, Paris 75002 — I want the DVF price estimate, energy rating, natural risks, local demographics, and expected rental yield all in one go?

## When to prefer this

Choose this endpoint when you need a single aggregated investment scorecard for a French property, combining price, energy, risk, demographics, and rental yield in one call — rather than making separate calls to individual APIs for each data point. Ideal for real-estate due diligence, investment screening, or property comparison workflows in the French market.

## Known failure modes

- Address not found or ambiguous — returns error or empty result
- Address outside France — endpoint only covers French territory
- Missing required query parameters (adresse, surface, or type) — likely returns 400 or error payload
- Property type not one of 'appartement' or 'maison' — may return validation error
- No DVF comparables available for the area — price estimate may be absent or low-confidence
- Payment of $0.08 USDC not completed — returns 402 Payment Required

## How this service works

Real-estate investment scorecard for an address: DVF value estimate + energy (DPE) + natural risks + demographics + rental yield estimate. Query: ?adresse=&surface=&type=appartement|maison

## Output

A structured investment scorecard including: DVF-based market value estimate (€/m² median and range), energy performance rating (DPE class), natural risk exposure indicators, local demographic data, and an estimated gross rental yield — all synthesized for the queried address and property type.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/french-real-estate-investment-scorecard-analyse-immo-89d70b54/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.x-402.online](https://www.zero.xyz/host/api.x-402.online/llms.txt)
