Matchplat API Docs

GET /utils/naics-codes

Restituisce la lista di tutti i codici NAICS disponibili (nome e descrizione in inglese), con struttura gerarchica. Esempio: 33 - Manufacturing > 331 - Primary Metal Manufacturing > 3311 - Iron and Steel Mills and Ferroalloy Manufacturing > ...

Risposta 200

Campo Tipo Descrizione
naicsCodes NaicsCode[] Elenco dei codici NAICS disponibili (struttura ricorsiva, nome e descrizione in inglese)

Esempio

{
  "naicsCodes": [
    {
      "title": "Manufacturing",
      "code": "33",
      "description": "Manufacturing activities",
      "subCodes": [
        {
          "title": "Primary Metal Manufacturing",
          "code": "331",
          "description": "Primary Metal Manufacturing",
          "subCodes": [
            {
              "title": "Iron and Steel Mills and Ferroalloy Manufacturing",
              "code": "3311",
              "description": "Iron and Steel Mills and Ferroalloy Manufacturing",
              "subCodes": [
                {
                  "title": "Iron and Steel Mills and Ferroalloy Manufacturing",
                  "code": "33111",
                  "description": "Iron and Steel Mills and Ferroalloy Manufacturing",
                  "subCodes": [
                    {
                      "title": "Iron and Steel Mills and Ferroalloy Manufacturing",
                      "code": "331110",
                      "description": "Iron and Steel Mills and Ferroalloy Manufacturing",
                      "subCodes": []
                    }
                  ]
                }
              ]
            }
          ]
        }
      ]
    }
  ]
}

Esempio chiamata curl

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

Altri codici

400

Errore generico di richiesta