Matchplat API Docs

GET /utils/nace-codes

Restituisce la lista di tutti i codici NACE disponibili (nome e descrizione in inglese), con struttura gerarchica. Esempio: C - Manufacturing > 10 - Manufacture of food products > 10.1 - Processing and preserving of meat and production of meat products > ...

Risposta 200

Campo Tipo Descrizione
naceCodes NaceCode[] Elenco dei codici NACE disponibili (struttura ricorsiva, nome e descrizione in inglese)

Esempio

{
  "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": []
                }
              ]
            }
          ]
        }
      ]
    }
  ]
}

Esempio chiamata curl

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

Altri codici

400

Errore generico di richiesta