# French Company Credit Score (Lite) – score-entreprise/partial

> French Company Credit Score (Lite) – score-entreprise/partial is a paid API for AI agents from api.x-402.online, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Returns a lightweight credit risk score (0–100), risk level, and insolvency count for a French company, identified by name or SIREN number.

## Facts

- Endpoint: GET https://api.x-402.online/v1/fr/score-entreprise/partial
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/french-company-credit-score-lite-score-entreprise-partial-e545f775
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_nqHcDYquo3geObea8tDXW

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-company-credit-score-lite-score-entreprise-partial-e545f775
```

Example prompt: Can you give me a quick credit risk score for the French company Carrefour — just the score out of 100, risk level, and how many insolvency proceedings they've had? Their SIREN is 652014051.

## When to prefer this

Use this endpoint when you only need a fast, cheap top-line risk signal (score + level + insolvency count) for a French company and do not need detailed financial factor breakdowns. At $0.02 per call it is ideal for bulk screening or initial due diligence triage. Prefer the full /v1/fr/score-entreprise endpoint when you need the underlying financial rationale or specific financial metrics.

## Known failure modes

- Company not found by name or SIREN — returns empty or 404-equivalent response
- Ambiguous company name matches multiple entities — may return first match or require SIREN for precision
- SIREN number invalid or malformed — returns validation error
- Payment not completed (x-402 protocol) — returns 402 Payment Required
- Rate limiting or service unavailability — returns 429 or 5xx error

## How this service works

LITE version of score-entreprise: score 0-100 + level + insolvency count only. Upgrade to /v1/fr/score-entreprise for factor breakdown & financials. Query: ?q= or ?siren=

## Output

Returns a JSON object containing: a numeric credit score between 0 and 100, a categorical risk level (e.g. low/medium/high), and an integer count of insolvency proceedings on record for the company. Does not include detailed financial factors or breakdown (available in the full /v1/fr/score-entreprise endpoint).

## 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-company-credit-score-lite-score-entreprise-partial-e545f775/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)
