# French Business Location Study API

> French Business Location Study API is a paid API for AI agents from api.x-402.online, paid per call via x402, $0.12/call, status unknown (last checked 2026-09-14).

Returns a business implantation study for a French commune: competitor saturation, demographics, commercial real-estate prices, and an opportunity score for a given activity type.

## Facts

- Endpoint: GET https://api.x-402.online/v1/fr/etude-implantation
- Price: $0.12/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/french-business-location-study-api-37e38091
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_HgMOoqGUby5GoocALVE-1

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-business-location-study-api-37e38091
```

Example prompt: Can you run a business implantation study for opening a boulangerie in Grenoble — I want to know how saturated the market is with competitors, what the demographics look like, local commercial real-estate prices, and what the opportunity score is?

## When to prefer this

Use this endpoint when you need a fast, single-call business location feasibility study for the French market — specifically when you need to assess competitor density, local demographics, real-estate costs, and an opportunity score for a specific activity in a French commune. Prefer this over manual research or generic business intelligence tools when the target market is France and you need structured, comparable data across communes.

## Known failure modes

- Unknown commune name returns 404 or empty result
- Unrecognized activite value may return null or partial data
- Missing required query params (activite or commune) returns 400 or error
- Rate limiting or payment failure returns 402
- Communes with very small populations may have incomplete demographic data

## How this service works

Business location study: competitor saturation (same activity in commune), demographics, commercial real-estate prices, opportunity score. Query: ?activite=&commune=

## Output

A structured report including: number of same-activity competitors in the commune, demographic indicators of the population, commercial real-estate price data for the area, and a synthesized opportunity score indicating viability of opening the specified business type in that 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"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/french-business-location-study-api-37e38091/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)
