# x402-farm French Artisan Verification API

> x402-farm French Artisan Verification API 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-13).

Verifies French artisan certification status and RGE (Reconnu Garant de l'Environnement) credentials for a given professional or company

## Facts

- Endpoint: GET https://x402-farm.vercel.app/v1/fr/verif-artisan
- Price: $0.08/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-artisan-verification-api-ab748998
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_mAQLgN2fDM8e4V54U5nQk

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-artisan-verification-api-ab748998
```

Example prompt: Can you verify whether this French artisan or contractor is RGE certified and check their professional standing — I want to know the confidence level and whether they have any collective procedures on record?

## When to prefer this

Use this endpoint when you need to verify the RGE certification status and professional standing of a French artisan or contractor, especially in contexts involving energy renovation grants, marketplace onboarding, or pre-hire due diligence. It is well-suited for AI agents that need pay-per-call access without account registration, using USDC micropayments via the x402 protocol. Prefer this over manual registry lookups when automation and structured output are required.

## Known failure modes

- Artisan not found in registry — may return low confidence or null certification status
- Payment failure via x402 protocol before response is served
- Invalid or missing input parameters return schema validation errors
- Registry data may be outdated if the artisan's certification recently lapsed
- Network timeout from upstream French government data source

## How this service works

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

## Output

Returns a JSON object with a confidence level ('confiance', e.g. 'élevée' meaning high), a boolean indicating RGE certification status ('certifie_rge'), and a count of collective insolvency or legal procedures ('procedures_collectives'). This enables downstream decisions about contractor trustworthiness and regulatory compliance.

## 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": {
  "confiance": "élevée",
  "certifie_rge": true,
  "procedures_collectives": 0
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-farm-french-artisan-verification-api-ab748998/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)
