Skip to main content
GET
/
api
/
uctovna-zavierka
Get financial statement
curl --request GET \
  --url https://www.registeruz.sk/cruz-public/api/uctovna-zavierka
{
  "id": 123,
  "idUJ": 123,
  "obdobieOd": "<string>",
  "obdobieDo": "<string>",
  "typ": "Riadna",
  "konsolidovana": true,
  "konsolidovanaZavierkaUstrednejStatnejSpravy": true,
  "suhrnnaUctovnaZavierkaVerejnejSpravy": true,
  "datumPodania": "<string>",
  "datumZostavenia": "<string>",
  "datumSchvalenia": "<string>",
  "datumZostaveniaK": "<string>",
  "datumPrilozeniaSpravyAuditora": "<string>",
  "nazovFondu": "<string>",
  "leiKod": "<string>",
  "idUctovnychVykazov": [
    123
  ],
  "zdrojDat": "<string>",
  "datumPoslednejUpravy": "<string>"
}
To get a financial statement ID, use List financial statements.
Learn more about Data access pattern used across the RÚZ API.

Common patterns

Use obdobieOd, obdobieDo, and typ to identify which accounting period and statement type you’re working with.
Checking the statement period and type
// 1. Fetch the financial statement
const statement = await fetchStatement(340867);

// 2. Check the statement period and type
console.log(`${statement.obdobieOd}${statement.obdobieDo}`);
console.log(statement.typ);

Query Parameters

id
integer
required

Entity identifier — obtained from an identifier list endpoint.

Response

Financial statement returned successfully.

A financial statement (účtovná závierka) belonging to an accounting unit. Links to individual financial reports via idUctovnychVykazov.

id
integer

Unique identifier.

idUJ
integer

ID of the parent accounting unit.

obdobieOd
string

Period start (YYYY-MM).

obdobieDo
string

Period end (YYYY-MM).

typ
enum<string>

Statement type.

Available options:
Riadna,
Mimoriadna,
Priebežná,
Kombinovaná
konsolidovana
boolean

Whether this is a consolidated statement.

konsolidovanaZavierkaUstrednejStatnejSpravy
boolean

Consolidated statement of central government.

suhrnnaUctovnaZavierkaVerejnejSpravy
boolean

Summary statement of the public sector.

datumPodania
string

Date filed (YYYY-MM-DD).

datumZostavenia
string

Date prepared (YYYY-MM-DD).

datumSchvalenia
string

Date approved (YYYY-MM-DD).

datumZostaveniaK
string

Balance sheet date (YYYY-MM-DD).

datumPrilozeniaSpravyAuditora
string

Date auditor's report was attached (YYYY-MM-DD).

nazovFondu
string

Fund name — present only for fund statements.

leiKod
string

LEI code (20 characters).

idUctovnychVykazov
integer[]

IDs of linked financial reports.

zdrojDat
string

Data source code.

datumPoslednejUpravy
string

Date last modified (YYYY-MM-DD).