This service gives you access to the NUTS 2021 dataset.

The NUTS classification (Nomenclature of territorial units for statistics) is a hierarchical system for dividing up the economic territory of the EU and the UK for the purpose of:

NUTS 2021 classification by the European Union/Eurostat is licensed under CC BY 4.0

The data is provided in json/geojson format.

<aside> 🇪🇺 Coverage: Europe

</aside>

ENDPOINTS

GET /nuts
GET /nuts/id

List NUTS data

Retrieve a list of landcover data filtered by corresponding parameters.

Parameter Description Mandatory
country filter by two-letter country code* (ISO 3166-1 ALPHA-2) No
level filter by nuts level (0, 1, 2, 3) No

<aside> ⚠️ *Note! The country code of Greece (EL instead of GR) does not follow the standard ISO 3166-1 alpha-2.

</aside>

Returns

Returns a GEOJSON FeatureCollection of nuts regions.

If no filter parameters are defined the first datasets from the database are returned with the default limit of 5.

GET /nuts

curl

curl <https://api.riscognition.io/nuts> \\
-H "Authorization: Bearer YOUR-API-KEY"

python

headers = {'Authorization': 'Bearer YOUR-API-KEY'}
response = requests.get("<https://api.riscognition.io/nuts>", headers = headers)

Retrieve a single NUTS region

Retrieve a NUTS region by its unique NUTS ID.

<aside> ⚠️ *Note! The country code of Greece (EL instead of GR) does not follow the standard ISO 3166-1 alpha-2.

</aside>

| --- | --- | --- |

Returns

Returns a GEOJSON FeatureCollection with a single feature.

GET /nuts/:id

curl

curl "<https://api.riscognition.io/nuts/FR107>" \\
-H "Authorization: Bearer YOUR-API-KEY"

python

headers = {'Authorization': 'Bearer YOUR-API-KEY'}
response = requests.get("<https://api.riscognition.io/nuts/FR107>", headers = headers)