# Sirenic Latvian Company Insolvency Check

> Sirenic Latvian Company Insolvency Check 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-15).

Returns official insolvency and legal-protection proceeding records for a Latvian company from the Uzņēmumu reģistrs, or confirms no proceeding exists.

## Facts

- Endpoint: GET https://api.sirenic.eu/v1/eu/entreprise/LV/:regnr/insolvabilite
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sirenic-latvian-company-insolvency-check-7e69aa9d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_5SYHPrvf6etbqoJzwpa6h

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-insolvency-check-7e69aa9d
```

Example prompt: Can you check whether Latvian company 40103144555 has any insolvency or legal-protection proceedings on record in the official Uzņēmumu reģistrs?

## When to prefer this

Use this endpoint when you need authoritative, official insolvency status for a Latvian-registered company specifically. It draws from the CC0 Uzņēmumu reģistrs daily snapshot (since 2008), making it the most reliable source for Latvian insolvency records. Prefer it over generic credit-risk or scraping solutions when you need court case numbers, resolution details, or a legally authoritative negative confirmation for compliance or due diligence workflows.

## Known failure modes

- 404 — registration number not found in the Latvian register; payment is cancelled
- Invalid regnr format (not 11 digits) causes a 4xx error
- Company exists but has no proceedings — handled gracefully with aucune_procedure: true (200 OK)
- Temporary upstream data unavailability from Uzņēmumu reģistrs open data feed

## How this service works

Latvian company insolvency record from the official Uzņēmumu reģistrs open data (CC0, daily photo since 2008), built for credit risk and compliance screening: insolvency and legal protection proceedings in Latvia with start/end dates, resolution, court and case number. A registered company with NO proceeding returns an explicit positive answer (200, aucune_procedure: true) — the register is authoritative. 11-digit registration number.

## Output

A JSON response indicating whether the company has active or historical insolvency or legal-protection proceedings. If proceedings exist, returns start/end dates, resolution outcome, court name, and case number. If none exist, returns an explicit aucune_procedure: true flag confirming the register shows no proceeding. Returns 404 if the registration number is unknown to the register.

## 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). Legal-person proceedings only; an entity unknown to the register returns 404, payment cancelled., e.g. 40103144555"
      }
     }
    },
    "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-insolvency-check-7e69aa9d/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)
