# x402-farm French Company Annual Accounts Lookup

> x402-farm French Company Annual Accounts Lookup is a paid API for AI agents from x402-farm.vercel.app, paid per call via x402, $0.06/call, status unknown (last checked 2026-09-14).

Retrieves filed annual accounts (bilans) for French companies, returning SIREN number, company name, and dates of deposited financial statements.

## Facts

- Endpoint: GET https://x402-farm.vercel.app/v1/fr/bilans
- Price: $0.06/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-farm-french-company-annual-accounts-lookup-f735fd2c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_jRg4bOrJfjX6bwoZayA8i

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-company-annual-accounts-lookup-f735fd2c
```

Example prompt: Can you look up the annual accounts filing dates for Decathlon — I want to see what comptes annuels they've deposited and when their last fiscal year closed?

## When to prefer this

Choose this endpoint when you need structured data on French company annual account filings, especially fiscal year-end dates and deposit history, without needing to set up an account. Ideal for AI agents performing due diligence, compliance checks, or corporate research on French entities, paying per-call in USDC via the x402 protocol with no prior registration required.

## Known failure modes

- Company not found: no matching SIREN or name returns empty or 404
- No accounts filed: company exists but has never deposited annual accounts
- Invalid query parameters: malformed input returns validation error
- Payment failure: x402 USDC payment not accepted, returns 402 status
- Rate limiting or service unavailability: returns 503 or timeout

## How this service works

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

## Output

Returns a JSON object containing the company's SIREN number, its legal denomination (company name), and an array of annual account filings each with a 'date_cloture' (closing/fiscal year-end date), indicating when financial statements were deposited with the French registry.

## 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": {
  "siren": "306138900",
  "denomination": "DECATHLON",
  "comptes_annuels_deposes": [
   {
    "date_cloture": "2024-12-31"
   }
  ]
 }
}
```

## More

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