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.
{
"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.
Countries
DE (Germany), FR (France)
Major regions
DEA (North Rhine-Westphalia)
Regions
DEA2 (Cologne region)
Provinces
DEA23 (Cologne city)
Municipalities
DE_05315000 (Köln)
34 countries
Pan-European coverage
From Portugal to Finland. From Ireland to Cyprus. Complete coverage of EU member states plus EEA countries.
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
});