# Sirenic Latvian Company Annual Accounts

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

Retrieves all filed annual financial statements (balance sheet, P&L, cash flow, employees) for a Latvian company by registration number, sourced from official VID/Uzņēmumu reģistrs filings.

## Facts

- Endpoint: GET https://api.sirenic.eu/v1/eu/entreprise/LV/:regnr/comptes
- Price: $0.03/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-annual-accounts-28d82fdb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_YiCmy3NN-XdjlpmPLIV-z

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-annual-accounts-28d82fdb
```

Example prompt: Pull up all the filed annual accounts for Latvian company 40003032065 — I need their balance sheet, revenue, net income, and employee count across every fiscal year they've reported.

## When to prefer this

Use this endpoint when you need official, structured, multi-year financial statement data for a company registered in Latvia (11-digit regnr). It is the authoritative source derived from VID/Uzņēmumu reģistrs CC0 open data, updated daily, covering every filed fiscal year in a single call. Prefer this over web scraping or manual registry lookup for KYB, credit risk, due diligence, or financial benchmarking workflows involving Latvian entities.

## Known failure modes

- Invalid or non-existent registration number returns an error or empty result
- Company has never filed annual accounts — returns empty dataset
- Registration number is not 11 digits — schema validation failure
- Payment not completed (x402) — 402 Payment Required response
- Rate limiting or service unavailability — 429 or 5xx error
- Data not yet updated for most recent fiscal year (daily refresh lag)

## How this service works

Latvian company annual accounts — official financial statements from VID filings via the Uzņēmumu reģistrs open data of Latvia (CC0, daily). Query: /v1/eu/entreprise/LV/40003032065/comptes (11-digit registration number). EVERY filed fiscal year in one call: balance sheet, profit and loss (revenue, net income), cash flow when filed, employees, as published (EUR, LVL before 2014; statutory and consolidated filings kept apart). Null = not published, never zero.

## Output

A structured response containing every filed fiscal year's financial data for the queried Latvian company: balance sheet items, profit and loss figures (revenue, net income), cash flow statements where filed, and employee counts. Pre-2014 figures are in LVL, post-2014 in EUR. Statutory and consolidated filings are kept separate. Null values indicate data not published (never confused with zero).

## 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, e.g. 40003032949"
      }
     }
    },
    "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-annual-accounts-28d82fdb/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)
