# Sirenic Latvian Company Legal Events

> Sirenic Latvian Company Legal Events is a paid API for AI agents from api.sirenic.eu, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-13).

Returns official legal events for a Latvian company (liquidations, mergers, acquisitions, activity suspensions, securing measures) from the Uzņēmumu reģistrs open data.

## Facts

- Endpoint: GET https://api.sirenic.eu/v1/eu/entreprise/LV/:regnr/evenements
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sirenic-latvian-company-legal-events-481a8ac1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_59KLLqIwZEvjAQyShw2dh

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-latvian-company-legal-events-481a8ac1
```

Example prompt: Can you pull the official legal events for Latvian company registration number 50203219311 — I need to know if there are any liquidations, mergers, court terminations, liens, or VID suspensions on record?

## When to prefer this

Use this endpoint when you need official, structured legal event data for a specific Latvian company by its 11-digit Uzņēmumu reģistrs number. Ideal for due diligence workflows, supplier verification, M&A research, or compliance monitoring involving Latvian entities. Prefer this over web scraping or manual registry checks for reliable, CC0-licensed, daily-updated structured data.

## Known failure modes

- 404 returned for unknown or invalid registration number (payment is cancelled)
- 11-digit format not respected causes rejection
- Company exists but has no events — returns aucun_evenement: true rather than an event list
- Data reflects daily snapshot so very recent events may not yet appear
- Non-Latvian registration numbers will not resolve

## How this service works

Latvian company legal events from the official Uzņēmumu reģistrs open data (CC0, daily photo): liquidations and activity terminations (incl. by court or tax authority), mergers, acquisitions, divisions and transformations with the other company's number, VID activity suspensions, securing measures (prohibitions, liens, attachments) with the registering institution. Closed-list types plus source code and wording. A registered company with no event gets aucun_evenement: true. 11-digit number.

## Output

A structured object listing all official legal events for the company, each with a closed-list event type, source code, and official wording. Events include liquidations, activity terminations (voluntary, court-ordered, or tax-authority-ordered), mergers, acquisitions, divisions, transformations (with the other company's registration number), VID activity suspensions, and securing measures (prohibitions, liens, attachments) with the registering institution. If the company is registered but has no events, returns aucun_evenement: true. Returns 404 if the registration number is unknown (payment cancelled).

## 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": [
      "regnr"
     ],
     "properties": {
      "regnr": {
       "type": "string",
       "description": "11-digit Latvian registration number (Uzņēmumu reģistrs). A registered company with no event returns aucun_evenement: true; an unknown number returns 404, payment cancelled., e.g. 50203219311"
      }
     }
    },
    "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-latvian-company-legal-events-481a8ac1/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)
