# x402-farm Entreprise 360 French Company Lookup

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

Retrieves comprehensive 360-degree business registry data for a French company, including VAT number, SIREN, and legal announcements count.

## Facts

- Endpoint: GET https://x402-farm.vercel.app/v1/fr/entreprise-360
- Price: $0.04/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-entreprise-360-french-company-lookup-451808a8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-APShOHpxngAn21QANm_F

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-entreprise-360-french-company-lookup-451808a8
```

Example prompt: Can you look up the 360 business profile for the French company with SIREN 306138900 and tell me their VAT number and how many legal announcements they have on record?

## When to prefer this

Choose this endpoint when you need to quickly verify or enrich data about a French company using their SIREN number, particularly when you need VAT (TVA) numbers for invoicing, compliance checks, or due diligence. It is ideal for AI agents operating without pre-registered accounts since it uses the x402 pay-per-call USDC micropayment model. Prefer it over manual registry lookups or subscription-based French data APIs when you need lightweight, on-demand company identity verification at $0.04 per call.

## Known failure modes

- Company not found — 'found: false' returned when SIREN does not match any registered entity
- Invalid or malformed SIREN number resulting in lookup failure
- Payment failure via x402 protocol if USDC balance is insufficient
- Rate limiting or service unavailability on the underlying French registry data source
- Network timeout if the French registry API is slow to respond

## 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 'found' boolean indicating if the company was located, an 'identite' object containing the French TVA (VAT) number and SIREN identifier, and an 'annonces_legales' object with the total count of legal announcements associated with the company.

## 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": {
  "found": true,
  "identite": {
   "tva": "FR51306138900",
   "siren": "306138900"
  },
  "annonces_legales": {
   "total": 98
  }
 }
}
```

## More

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