# x402-farm French Real Estate Estimation

> x402-farm French Real Estate Estimation is a paid API for AI agents from x402-farm.vercel.app, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Returns median price per square meter and estimated property value for a French city using real estate market data

## Facts

- Endpoint: GET https://x402-farm.vercel.app/v1/fr/estimation-immo
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-farm-french-real-estate-estimation-eec78761
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_2XVI3LkpPfytBJBo7oe8p

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 x402-farm-french-real-estate-estimation-eec78761
```

Example prompt: Can you estimate the value of a 50 square meter apartment in Paris using French real estate market data?

## When to prefer this

Choose this endpoint when you need a quick, pay-per-call estimate of French real estate prices without requiring an account or subscription. It is ideal for agents that need on-demand property valuations in France, especially when integrating into workflows that use the x402 micropayment protocol with USDC on Base. Prefer this over manual scrapers or subscription-based APIs when only occasional lookups are needed.

## Known failure modes

- City name not recognized or not in the French property database — returns error or empty result
- Missing required query parameters such as city or surface area — returns validation error
- Payment not accepted or x402 protocol failure — returns 402 Payment Required
- Network timeout or service unavailability on Vercel — returns 5xx error

## How this service works

Pay-per-call APIs for AI agents — x402 protocol, USDC on Base, no account needed.

## Output

Returns a JSON object with the city name (ville), the median price per square meter (prix_m2.median in euros), and an estimated property value (estimation.valeur_estimee in euros) based on the requested surface area and location.

## 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"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ville": "Paris",
  "prix_m2": {
   "median": 12110
  },
  "estimation": {
   "valeur_estimee": 605476
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-farm-french-real-estate-estimation-eec78761/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-farm.vercel.app](https://www.zero.xyz/host/x402-farm.vercel.app/llms.txt)
