Matchplat API Docs

GET /utils/nace-codes

Returns the list of all available NACE codes (name and description in English), with hierarchical structure. Example: C - Manufacturing > 10 - Manufacture of food products > 10.1 - Processing and preserving of meat and production of meat products > ...

Response 200

Field Type Description
naceCodes NaceCode[] List of available NACE codes (recursive structure, name and description in English)

Example

{
  "naceCodes": [
    {
      "title": "Manufacturing",
      "code": "C",
      "description": "Manufacturing activities",
      "subCodes": [
        {
          "title": "Manufacture of food products",
          "code": "10",
          "description": "Manufacture of food products",
          "subCodes": [
            {
              "title": "Processing and preserving of meat and production of meat products",
              "code": "10.1",
              "description": "Processing and preserving of meat and production of meat products",
              "subCodes": [
                {
                  "title": "Processing and preserving of meat",
                  "code": "10.11",
                  "description": "Processing and preserving of meat",
                  "subCodes": []
                },
                {
                  "title": "Processing and preserving of poultry meat",
                  "code": "10.12",
                  "description": "Processing and preserving of poultry meat",
                  "subCodes": []
                },
                {
                  "title": "Production of meat and poultry meat products",
                  "code": "10.13",
                  "description": "Production of meat and poultry meat products",
                  "subCodes": []
                }
              ]
            }
          ]
        }
      ]
    }
  ]
}

Example curl call

curl -X GET "/utils/nace-codes?countryIso2=IT" \
  -H "x-api-key: <API_KEY>"

Other codes

400

Generic request error