# Sirenic Latvian Company Registry Lookup

> Sirenic Latvian Company Registry 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).

Looks up a Latvian company by its 11-digit registration number in the official Uzņēmumu reģistrs (Register of Enterprises of Latvia), returning legal name, legal form, status, incorporation date, and registered office in a unified JSON schema.

## Facts

- Endpoint: GET https://api.sirenic.eu/v1/eu/entreprise/LV/:id
- 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-latvian-company-registry-lookup-efa25df8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_aJYyf0_EnrdkPxY4kCNek

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-registry-lookup-efa25df8
```

Example prompt: Can you look up Latvian company registration number 40003245752 in the official registry and tell me its legal name, current status, and registered address?

## When to prefer this

Choose this endpoint when you need authoritative, official data on a Latvian company by its registration number. It is the correct choice for KYB/KYC workflows, supplier verification, contract preparation, or compliance checks involving Latvian legal entities. Prefer it over generic web searches when you need structured, normalized company data directly from the official government register.

## Known failure modes

- Invalid or non-11-digit registration number returns a validation error
- Company not found in the registry returns a 404 or empty result
- Temporary unavailability of the upstream official registry may cause delays or errors
- Non-Latvian registration numbers passed to this endpoint will not return results

## How this service works

Official Latvian company registry lookup (Uzņēmumu reģistrs / Uznemumu registrs — the Register of Enterprises of Latvia). Query: /v1/eu/entreprise/LV/40003245752 (11-digit registration number). Returns legal name, legal form, normalized status, incorporation date and registered office — Latvian company data from Latvia's official register. Unified JSON schema shared by all Sirenic European company profiles.

## Output

Returns a JSON object with the company's legal name, legal form (e.g. SIA, AS), normalized status (active/inactive/dissolved), incorporation date, and registered office address — sourced from the official Latvian Register of Enterprises in a unified European schema.

## 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": [
      "id"
     ],
     "properties": {
      "id": {
       "type": "string",
       "description": "Latvian registration number, exactly 11 digits (Uzņēmumu reģistrs — Register of Enterprises of Latvia)., e.g. 40003245752"
      }
     }
    },
    "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-registry-lookup-efa25df8/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)
