# Sirenic AMF Alerts & Register Lookup

> Sirenic AMF Alerts & Register Lookup 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-15).

Screens a name or SIREN against French AMF regulatory blacklists (unauthorized sites, scams, impersonation) and looks up PSAN crypto-provider registrations and licensed asset managers (SGP).

## Facts

- Endpoint: GET https://api.sirenic.eu/v1/regulateurs/fr/alertes
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sirenic-amf-alerts-register-lookup-882aaf3f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_CQPre9BIS3Kif4DPsZv6X

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-amf-alerts-register-lookup-882aaf3f
```

Example prompt: Can you check whether 'CryptoInvest Pro' appears on any AMF blacklists or scam alerts, and also verify if their SIREN 123456789 has a valid PSAN crypto-provider registration?

## When to prefer this

Choose this endpoint when you need to perform regulatory due diligence on French financial entities — specifically to check AMF blacklists, verify PSAN crypto registrations, or confirm SGP asset-management licenses. It is the only endpoint sourcing directly from official AMF open data (Licence Ouverte 2.0) for France-specific financial regulatory screening, and is distinct from general company registry lookups.

## Known failure modes

- Invalid or malformed SIREN (not 9 digits) returns a validation error
- Name not found on any list returns empty results (not an error — absence confirms no alert)
- AMF data refresh lag means very recent alerts may not appear
- Ambiguous company names may return multiple partial matches requiring disambiguation
- Rate limiting or payment failure returns 402 status

## How this service works

French financial regulator alerts and scam check against the official AMF blacklist: screen a name for unauthorized investment websites, scams and AMF impersonation, and look up PSAN crypto provider registrations and licensed asset management companies (SGP) by name or SIREN. A compliance screening of the regulator blacklists for agents vetting French counterparties in crypto and asset management. Official AMF open data (Licence Ouverte 2.0), refreshed daily.

## Output

Returns whether the queried name or SIREN appears on AMF blacklists (unauthorized investment sites, scams, AMF impersonation alerts), along with PSAN crypto-provider registration details and/or SGP asset-manager license status, sourced from official AMF open data refreshed daily.

## 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",
     "required": [],
     "properties": {
      "nom": {
       "type": "string",
       "description": "Name to screen against the AMF blacklists and the PSAN/SGP registers (2-100 chars). At least one of `nom` or `siren` is required."
      },
      "siren": {
       "type": "string",
       "description": "9-digit SIREN to look up in the PSAN/SGP registers. At least one of `nom` or `siren` is required."
      }
     }
    }
   },
   "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-amf-alerts-register-lookup-882aaf3f/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)
