# Qotien French Social Levies Rate Calculator

> Qotien French Social Levies Rate Calculator is a paid API for AI agents from app.qotien.fr, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Returns the applicable French social levies (prélèvements sociaux) rate for a given type of income, sourced from Légifrance and BOFiP

## Facts

- Endpoint: POST https://app.qotien.fr/api/fiscal/v1/calc/prelevements_sociaux
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/qotien-french-social-levies-rate-calculator-3f7c1644
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_HEOn_O93IK9hC13edHjaZ

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 qotien-french-social-levies-rate-calculator-3f7c1644 -d '<json body>'
```

Example prompt: What is the current French social levy rate (prélèvements sociaux) for LMNP rental income — give me the rate, unit, and legal sources used?

## When to prefer this

Choose this endpoint when you need a precise, legally-sourced French social levy rate broken down by income category, especially for patrimonial advisory (CGP) workflows, tax simulations, or LMNP/real estate scenarios. It is preferable over generic tax APIs because it references Légifrance and BOFiP directly, covers 19+ distinct French income types, and provides an explicit confidence rating per result.

## Known failure modes

- Invalid or unsupported type_revenu enum value returns an error with ok:false
- Missing required type_revenu field causes a validation error
- Rate not calculable for edge cases returns confiance: non_calculable
- Network or service downtime returns a 5xx error
- Outdated barème data if fiscal reference not yet updated for new tax year

## How this service works

Simulateur IFI, PER, IR et retraite (32 régimes). Logiciel CGP : bilan patrimonial, déclaration 2042, LMNP. Chiffres sourcés Légifrance et BOFiP. 14 jours d'essai.

## Output

A JSON object containing: a boolean success flag, the social levy rate value (typically a decimal percentage), the unit (e.g. RATE or PERCENT), a human-readable label, a confidence level (fiable/estime/partiel/sourcee/variable), an array of primary legal sources (e.g. LFSS articles, CSS articles), the fiscal year vintage, the capability name, and an optional usage warning indicating this is not personalised advice.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "type_revenu": {
   "enum": [
    "rf_location_nue",
    "pv_immo_particuliers",
    "assurance_vie",
    "pel_cel",
    "pep",
    "fonds_euros",
    "rcm_dividendes",
    "rcm_interets",
    "pv_mobiliere",
    "pea_post_2018",
    "bic_lmnp",
    "sci_is_dividendes",
    "per_assurantiel_gains",
    "per_bancaire_gains",
    "actifs_numeriques",
    "epargne_salariale",
    "exit_tax",
    "aga_gain_acquisition",
    "bspce",
    "stock_options_gain_acquisition"
   ],
   "type": "string",
   "description": "Nature du revenu (ex. rf_location_nue, rcm_dividendes, bic_lmnp)."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "schema": {
  "type": "object",
  "required": [
   "ok",
   "domaine",
   "capability",
   "result",
   "confiance",
   "sources",
   "millesime_fiscal"
  ],
  "properties": {
   "ok": {
    "type": "boolean",
    "description": "true = succès ; false = erreur (champ \"error\" présent à la place de result)."
   },
   "result": {
    "type": "object",
    "properties": {
     "unit": {
      "type": "string",
      "description": "Unité de value (EUR, PERCENT, RATE…)."
     },
     "label": {
      "type": "string",
      "description": "Libellé lisible du résultat."
     },
     "value": {
      "type": "number",
      "description": "Valeur principale (quand le résultat est scalaire)."
     },
     "confiance": {
      "enum": [
       "fiable",
       "estime",
       "partiel",
       "non_calculable",
       "sourcee",
       "variable"
      ],
      "type": "string",
      "description": "Confiance propre au résultat retraite (prime sur la confiance de capacité)."
     }
    },
    "description": "Résultat. Contient typiquement { value:number, unit:string, label:string } ; les outils retraite ajoutent confiance, fourchette, et le détail par régime."
   },
   "domaine": {
    "enum": [
     "fiscal",
     "retraite",
     "referentiel",
     "qotien"
    ],
    "type": "string",
    "description": "Domaine de la capacité."
   },
   "sources": {
    "type": "array",
    "items": {
     "type": "string"
    },
    "description": "Sources primaires/légales du calcul."
   },
   "confiance": {
    "enum": [
     "fiable",
     "estime",
     "partiel",
     "non_calculable",
     "sourcee",
     "variable"
    ],
    "type": "string",
    "description": "Niveau de confiance de CE résultat (fiscal = fiable ; retraite = variable)."
   },
   "capability": {
    "type": "string",
    "description": "Nom de la capacité appelée."
   },
   "referentiel": {
    "type": "string",
    "description": "Version du référentiel sourcé utilisé."
   },
   "annee_revenus": {
    "type": "number",
    "description": "Année des revenus concernés."
   },
   "avertissement": {
    "type": "string",
    "description": "Avertissement d'usage (résultat brut, pas un conseil personnalisé)."
   },
   "millesime_fiscal": {
    "type": "string",
    "description": "Millésime fiscal (année des barèmes appliqués)."
   }
  }
 },
 "example": {
  "ok": true,
  "result": {
   "unit": "RATE",
   "label": "Taux de prélèvements sociaux par nature de revenu",
   "value": 0
  
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/qotien-french-social-levies-rate-calculator-3f7c1644/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from app.qotien.fr](https://www.zero.xyz/host/app.qotien.fr/llms.txt)
