# x402-farm French Valuation Lookup

> x402-farm French Valuation Lookup is a paid API for AI agents from x402-farm.vercel.app, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-13).

Returns a central valuation estimate and revenue figure for a French entity, priced at $0.10 USDC per call via the x402 protocol.

## Facts

- Endpoint: GET https://x402-farm.vercel.app/v1/fr/valorisation
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-farm-french-valuation-lookup-2717e1de
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_yL-UbggiS6oROG63Sy8hN

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-valuation-lookup-2717e1de
```

Example prompt: Can you look up the central valuation estimate and revenue figure for that French company — just do a quick GET on the valuation endpoint and give me the numbers?

## When to prefer this

Use this endpoint when you need a quick, no-account-required financial valuation lookup for a French entity and can pay $0.10 USDC per call via the x402 protocol on Base. Prefer this over scraping or manual research when you need machine-readable valuation and revenue figures in a single API call. Note that the endpoint appears to return data for a single fixed French entity (no company identifier parameter), so it is best suited for that specific entity's valuation rather than arbitrary company lookups.

## Known failure modes

- Payment not included or invalid x402 USDC payment header — returns 402 Payment Required
- Endpoint returns stale or cached data with no freshness indicator
- No query parameters supported, so no way to specify a particular company — may return a fixed or default entity's data
- Network or Vercel cold-start timeout — transient 5xx error

## How this service works

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

## Output

A JSON object containing a 'valorisation' field with 'estimation_centrale' (central valuation estimate as a large integer, e.g. 15000000000) and a 'chiffre_affaires' field (annual revenue figure, e.g. 16207285000). Both figures appear to be in euros (no currency field is returned).

## 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": {
  "valorisation": {
   "estimation_centrale": 15000000000
  },
  "chiffre_affaires": 16207285000
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-farm-french-valuation-lookup-2717e1de/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)
