Skip to main content
GET
/
api
/
sk-nace
List SK NACE codes
curl --request GET \
  --url https://www.registeruz.sk/cruz-public/api/sk-nace
{
  "klasifikacie": [
    {
      "kod": "<string>",
      "nazov": {
        "sk": "<string>",
        "en": "<string>"
      }
    }
  ]
}
You can use this endpoint to resolve the skNace field from the response on an Accounting unit into a human-readable label.
The source code for this endpoint is the ŠÚSR codelist 5205/SKNACE5.

Common patterns

Fetch all SK NACE codes and find the matching label for a skNace code on an accounting unit.
Resolve an SK NACE code
// 1. Fetch all SK NACE codes
const { klasifikacie } = await fetch(`${BASE}/api/sk-nace`).then(r => r.json());

// 2. Resolve the activity label for an accounting unit
const activity = klasifikacie.find(a => a.kod === unit.skNace);

// 3. Log the SK NACE label
console.log(activity?.nazov?.sk);

Response

200 - application/json

SK NACE codes returned successfully.

klasifikacie
object[]