# Sirenic – French Company Lobbying Profile (HATVP)

> Sirenic – French Company Lobbying Profile (HATVP) is a paid API for AI agents from api.sirenic.eu, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Returns the HATVP-register lobbying profile of a French company identified by SIREN, including registration status, expense brackets, subjects, clients, and affiliations.

## Facts

- Endpoint: GET https://api.sirenic.eu/v1/entreprise/:siren/lobbying
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sirenic-french-company-lobbying-profile-hatvp-427c5086
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_L4X9k2y9W4M0l4CT3Ot_R

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 sirenic-french-company-lobbying-profile-hatvp-427c5086
```

Example prompt: Can you pull the lobbying profile for French company SIREN 552081317 from the HATVP register — I want to know if they're registered, what expense bracket they declared, and what subjects they lobby on?

## When to prefer this

Use this endpoint when you need official, government-sourced French lobbying data for a specific company identified by SIREN. It is the only endpoint drawing directly from the HATVP interest-representative register, making it authoritative for compliance checks, KYB due diligence, journalistic transparency research, or public affairs competitive intelligence. Prefer this over generic company data endpoints when lobbying activity, political influence, or HATVP registration status is specifically relevant.

## Known failure modes

- Invalid or malformed SIREN (not 9 digits) returns a 400 error
- Company not found in any registry returns 404
- HATVP data source temporarily unavailable may return 503
- Rate limiting or payment failure returns 402 or 429
- Company exists but has never been on the lobbying register — returns 200 with not-registered status

## How this service works

Lobbying and influence profile of a French company from the official HATVP register of interest representatives — a transparency, governance and ESG due diligence signal: registration status, category, lobbying-expense brackets per fiscal year, staff count, recent subjects with intervention domains and action types, clients (for consulting firms), affiliations, declaration defaults and deregistrations. Organisation-level only — no personal data. Not registered is a meaningful answer (still 200).

## Output

A JSON object containing the company's HATVP lobbying registration status (registered, not registered, or deregistered), lobbying expense brackets per fiscal year, number of dedicated staff, recent lobbying subjects with intervention domains and action types, list of clients (if a consulting firm), group affiliations, any declaration defaults, and deregistration history. A 200 response with 'not registered' is a valid, meaningful answer.

## 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"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "siren"
     ],
     "properties": {
      "siren": {
       "type": "string",
       "description": "9-digit SIREN, e.g. 552032534"
      }
     }
    },
    "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/sirenic-french-company-lobbying-profile-hatvp-427c5086/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.sirenic.eu](https://www.zero.xyz/host/api.sirenic.eu/llms.txt)
