# x402-farm Competitive Landscape Analysis (France)

> x402-farm Competitive Landscape Analysis (France) is a paid API for AI agents from x402-farm.vercel.app, paid per call via x402, $0.08/call, status unknown (last checked 2026-09-14).

Returns the total market size and top competitors with financial data (revenue) for a given French market segment

## Facts

- Endpoint: GET https://x402-farm.vercel.app/v1/fr/concurrents
- 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/x402-farm-competitive-landscape-analysis-france-9bc1b0e6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_sIQ_S7hT3umfYM-K3llrP

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-competitive-landscape-analysis-france-9bc1b0e6
```

Example prompt: Give me a competitive landscape for the French market — I want to see the total market size and the top competitors with their revenue figures.

## When to prefer this

Choose this endpoint when you need a fast, no-account-required competitive snapshot of the French market, including rival company names and revenue figures, and are willing to pay $0.08 USDC per call via the x402 protocol on Base. Best suited for agents that need lightweight competitive intelligence without integrating a full market data subscription.

## Known failure modes

- Payment failure: 402 response if USDC payment via x402 protocol is not completed
- Invalid method: non-GET requests will be rejected
- Empty result set: market segment may not be recognized or indexed
- Service unavailability: Vercel deployment may be intermittently down
- Stale data: competitor financials may not reflect the most current fiscal year

## How this service works

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

## Output

A JSON object containing the total French market size (total_marche, an integer representing number of players or market volume) and an array of top competitors, each with a name (nom) and financial data including annual revenue (ca). Example: {total_marche: 297, top_concurrents: [{nom: '...', finances: {ca: 1000000}}]}.

## 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": {
  "total_marche": 297,
  "top_concurrents": [
   {
    "nom": "...",
    "finances": {
     "ca": 1000000
    }
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-farm-competitive-landscape-analysis-france-9bc1b0e6/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)
