34 EU countries

European Coverage

Complete coverage of 34 European countries with 98,000 LAU municipalities and 1,345 NUTS3 regions. Eurostat-aligned data including population, GDP, unemployment, and demographic indicators.

34

EU Countries

Complete coverage

98K

LAU Municipalities

Local administrative units

1,345

NUTS3 Regions

Statistical regions

352M

Population

Total coverage

Eurostat-aligned data

LAU (Local Administrative Units) and NUTS (Nomenclature of Territorial Units for Statistics) follow EU standards. Consistent codes, harmonized indicators, ready for cross-border analysis.

GET /v1/eu/lau/DE_05315000
{
  "lau_id": "DE_05315000",
  "name": "Köln",
  "country_code": "DE",
  "nuts3_code": "DEA23",
  "population": 1073096,
  "population_density": 2686.5,
  "area_km2": 405.02,
  "gdp_per_capita": 52340.00,
  "unemployment_rate": 0.078,
  "data_completeness": 0.94
}

NUTS & LAU hierarchy

European statistical classification system. Query at any level from country to municipality.

NUTS 0

Countries

DE (Germany), FR (France)

39
NUTS 1

Major regions

DEA (North Rhine-Westphalia)

115
NUTS 2

Regions

DEA2 (Cologne region)

299
NUTS 3

Provinces

DEA23 (Cologne city)

1,345
LAU

Municipalities

DE_05315000 (Köln)

98,000

34 countries

Pan-European coverage

From Portugal to Finland. From Ireland to Cyprus. Complete coverage of EU member states plus EEA countries.

France(FR)
34,946
Germany(DE)
10,978
Spain(ES)
8,132
Italy(IT)
7,900
Czechia(CZ)
6,258
Austria(AT)
2,093
Poland(PL)
2,477
Portugal(PT)
3,092
Netherlands(NL)
342
Belgium(BE)
581
Sweden(SE)
290
Finland(FI)
309

Eurostat indicators

Harmonized data from official European statistical sources. Updated annually with consistent methodology across all countries.

Demographics

  • Population
  • Population density
  • Age structure
  • Migration rates

Economy

  • GDP per capita
  • Unemployment rate
  • Median income
  • Employment sectors

Geography

  • Area (km²)
  • Urban/rural classification
  • Coastal type
  • Mountain type

Boundaries

  • GeoJSON polygons
  • Multiple resolutions
  • Simplified geometries
  • Centroid points

Simple integration

RESTful API with TypeScript and Python SDKs. Query by country, NUTS region, or LAU code. GeoJSON responses ready for mapping.

import { Infomance } from '@infomance/sdk';

const client = new Infomance('sk_live_xxxx');

// Get EU overview
const overview = await client.eu.overview();
console.log(overview.total_countries);  // 34
console.log(overview.total_lau);        // 97987

// Query German municipality
const cologne = await client.eu.lau.get('DE_05315000');
console.log(cologne.population);        // 1073096

// List French municipalities
const france = await client.eu.lau.list({
  country_code: 'FR',
  limit: 100
});

Start building today.

Get your API key in 30 seconds. No credit card required.