# x402-farm Score Entreprise

> x402-farm Score Entreprise 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-15).

Returns a financial health/creditworthiness score for a French company identified by SIREN number, with a qualitative rating level.

## Facts

- Endpoint: GET https://x402-farm.vercel.app/v1/fr/score-entreprise
- Price: $0.08/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-farm-score-entreprise-14cd2ec9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_SYT5UHMnz-C766ZD7Jkhe

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-score-entreprise-14cd2ec9
```

Example prompt: Can you get the financial health score for French company with SIREN 306138900 and tell me what level it is — like whether it's solid or risky?

## When to prefer this

Choose this endpoint when you need a quick, pay-per-call financial health score for a French company without setting up an account or subscription. Ideal for AI agents performing B2B due diligence, supplier risk checks, or credit assessments on French enterprises identified by their SIREN number. Prefer this over full credit bureau APIs when lightweight, on-demand scoring is sufficient and cost-per-call pricing is acceptable.

## Known failure modes

- Invalid or non-existent SIREN number returns an error or empty result
- Payment not processed correctly via x402 protocol results in 402 response
- Rate limiting or service unavailability returns a 5xx error
- SIREN for a company with insufficient data may return a null or low-confidence score

## 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 numeric score (0–100), the company SIREN number, and a qualitative level label (e.g. 'solide') indicating the financial health category of the enterprise.

## 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": {
  "score": 82,
  "siren": "306138900",
  "niveau": "solide"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-farm-score-entreprise-14cd2ec9/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)
