Skip to main content
GET
/
api
/
uctovne-jednotky
List accounting units
curl --request GET \
  --url https://www.registeruz.sk/cruz-public/api/uctovne-jednotky
{
  "id": [
    123
  ],
  "existujeDalsieId": true
}

Common patterns

Filter by ico for a precise lookup.
GET /api/uctovne-jednotky?zmenene-od=2000-01-01&ico=00603481

Query Parameters

zmenene-od
string
required

Return IDs changed on or after this date. Use 2000-01-01 for a full sync. Accepts YYYY-MM-DD or YYYY-MM-DDThh:mm:ssZ.

Example:

"2000-01-01"

pokracovat-za-id
integer

Pagination cursor. Pass the last id from the previous response to get the next page.

max-zaznamov
integer
default:1000

Maximum number of IDs to return. Default 1000, maximum 10000.

Required range: x <= 10000
ico
string

Filter by IČO — exact match.

Example:

"00603481"

dic
string

Filter by DIČ — exact match.

pravna-forma
string

Filter by legal form code. See List legal forms for valid codes.

Example:

"701"

Response

List of matching IDs returned successfully.

Paginated list of entity IDs.

id
integer[]

Array of entity IDs. Empty array if no results match.

existujeDalsieId
boolean

When true, more IDs exist. Fetch the next page by passing the last ID in this response as pokracovat-za-id.