# Sirenic French Association RNA Profile Lookup

> Sirenic French Association RNA Profile Lookup is a paid API for AI agents from api.sirenic.eu, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-13).

Retrieves the official profile of a French association (loi 1901) by RNA number from the Ministry of the Interior RNA register, including status, dates, registered office, and SIREN when available.

## Facts

- Endpoint: GET https://api.sirenic.eu/v1/association/:rna
- Price: $0.005/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-association-rna-profile-lookup-dbd0c23c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_wHWD50Twxth8SV30AHJL5

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-association-rna-profile-lookup-dbd0c23c
```

Example prompt: Can you pull up the official RNA profile for French association W751004076 — I need its current status, registered office address, purpose, and SIREN number if it's available?

## When to prefer this

Use this endpoint when you need official data on a French association registered under loi 1901 that may NOT have a SIREN — specifically when you have the RNA number (W + 9 format) and need status, dates, registered office, purpose, or prefecture from the Ministry of the Interior RNA register. Prefer this over SIREN-based endpoints when the entity is a pure association without commercial activity. Not suitable for Alsace-Moselle associations, officer lookups, or entities outside the French association legal form.

## Known failure modes

- Invalid or malformed RNA number (not W + 9 digits) returns a 400 or validation error
- Association not found in RNA register returns a 404 or empty result
- Alsace-Moselle associations are excluded and will not be found
- SIREN field absent if Sirene does not confirm the association under category 92xx
- Stale data possible as the register is updated monthly, not in real time
- Payment failure (x402 protocol) if USDC balance is insufficient

## How this service works

Official profile of a French association (loi 1901) by RNA number (W + 9), from the RNA register (Ministry of the Interior, monthly): title, purpose and Waldec codes, nature, grouping, position (active/dissolved/deleted), creation, declaration, JO publication and dissolution dates, registered office, website, RUP number as declared, prefecture, and the SIREN when Sirene confirms it (categorie juridique 92xx). Covers associations WITHOUT a SIREN. No officer data. Excludes Alsace-Moselle.

## Output

Returns the official RNA register record for the association: title, stated purpose, Waldec codes, nature, grouping type, activity position (active/dissolved/deleted), creation date, declaration date, Journal Officiel publication date, dissolution date (if applicable), registered office address, website, RUP number as declared, prefecture, and the SIREN number when Sirene cross-confirms it under legal category 92xx. Does not include officer/director data. Excludes Alsace-Moselle associations.

## 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": [
      "rna"
     ],
     "properties": {
      "rna": {
       "type": "string",
       "description": "RNA number (W + 9 characters), e.g. W751004076 — or a legacy RNA identifier as published (3-14 characters)"
      }
     }
    },
    "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-association-rna-profile-lookup-dbd0c23c/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)
