Overview

Open Government, Finland, operating through the avoindata.fi portal, serves as the central hub for public sector open data in Finland. Established in 2013, the platform provides access to a wide array of government datasets, facilitating transparency and enabling data-driven applications and research. The portal's infrastructure is built upon CKAN, an open-source data portal platform, which supports both a user-friendly web interface and a robust API for programmatic interaction. This dual approach ensures that both technical users and general citizens can discover and utilize the available data.

The avoindata.fi portal is designed for a diverse audience, including software developers, data scientists, researchers, journalists, and public sector innovators. Developers can leverage the CKAN API to integrate Finnish public data directly into their applications, build visualizations, or create new services. Data scientists and researchers can access raw datasets for analysis, contributing to evidence-based policy making and academic studies. For example, data related to city planning, public transportation, or environmental statistics can inform urban development projects or environmental impact assessments. The platform also offers developer resources, including API documentation and code examples in languages such as Python, R, and JavaScript, to streamline the integration process.

The platform shines in scenarios requiring access to authenticated or unauthenticated public-sector information, such as geographical data, statistical data, and administrative records. Its commitment to open data principles means that all data access through the portal is free of charge, removing financial barriers to innovation and public engagement. The primary focus of avoindata.fi is to provide comprehensive access to data produced by Finnish public organizations, from national government agencies to local municipalities. This includes metadata about datasets, enabling users to understand the scope and quality of the information before consumption. The portal's API allows for searching, retrieving, and managing datasets and resources, making it a critical tool for any project dependent on Finnish public sector data.

While avoindata.fi specializes in Finnish public data, the underlying CKAN framework is a widely adopted standard for open data portals globally. This adherence to an established standard can simplify adoption for developers already familiar with other CKAN-based platforms. The portal's emphasis on machine-readable formats and documented APIs supports automation and integration into larger data pipelines, aligning with modern data architecture principles. The continuous updating of datasets by various public bodies ensures that the information remains current and relevant for various applications.

Key features

  • Open Data Catalog: A centralized repository for discovering and accessing datasets published by Finnish public sector organizations.
  • CKAN API: Programmatic interface for searching, retrieving, and managing datasets and metadata, built on the widely used CKAN platform.
  • Developer Resources: Comprehensive documentation, including API specifications and code examples in Python, R, and JavaScript, to aid integration.
  • Free Data Access: All datasets and API access are provided without charge, promoting public and commercial use of data.
  • Metadata Management: Detailed metadata for each dataset, including descriptions, licenses, and update frequencies, to ensure data comprehension.
  • Search and Filter Capabilities: Advanced search functionality to locate specific datasets by keywords, categories, organizations, or tags.
  • Machine-Readable Formats: Data available in various formats suitable for automated processing, such as CSV, JSON, and XML.
  • Community Support: Access to a community of users and developers utilizing the platform for data-driven initiatives.

Pricing

Open Government, Finland (avoindata.fi) provides all its data access and API services free of charge. There are no subscription fees, usage-based costs, or tiered pricing models for accessing the public datasets or utilizing the CKAN API.

Service Cost (As of 2026-05-28) Notes
Data Catalog Access Free No charge for browsing or downloading datasets.
CKAN API Access Free No charge for programmatic access to datasets and metadata via the API.
Developer Resources Free Documentation, examples, and support resources are provided at no cost.

For more detailed information on data access and usage, refer to the API documentation on avoindata.fi.

Common integrations

  • Data Visualization Tools: Integration with tools like Tableau, Power BI, or specific charting libraries in JavaScript to create visual representations of public data.
  • Geographic Information Systems (GIS): Utilizing geographical datasets from avoindata.fi within GIS platforms such as Esri ArcGIS (ArcGIS Developers) or QGIS for spatial analysis and mapping applications.
  • Web and Mobile Applications: Incorporating public data directly into web services or mobile apps to provide information on public transport, city services, or local statistics.
  • Research and Academic Platforms: Downloading datasets for use in statistical software (e.g., R, Python with Pandas) or research databases for academic studies and policy analysis.
  • Smart City Initiatives: Feeding real-time or historical urban data into smart city dashboards and systems to monitor and manage city resources.
  • Custom ETL Pipelines: Building Extract, Transform, Load (ETL) processes to ingest data from avoindata.fi into data warehouses or data lakes for further processing and analysis.

Alternatives

  • data.europa.eu: The official portal for European data, offering a vast catalog of datasets from various EU institutions and member states.
  • data.gov (USA): The home of the U.S. Government’s open data, providing access to federal datasets across numerous categories.
  • data.gov.uk (UK): A platform for UK government data, including national and local statistics, geospatial data, and other public information.
  • OpenAIRE: An initiative focused on open science, providing access to research outputs, including publications and datasets, primarily from European research projects.

Getting started

To begin accessing data from Open Government, Finland (avoindata.fi), you can use the CKAN API. The following Python example demonstrates how to search for datasets and retrieve metadata using the requests library. This example specifically queries for datasets containing the term "Helsinki".

import requests
import json

def search_datasets(query):
    ckan_api_url = "https://www.avoindata.fi/api/3/action/package_search"
    params = {
        "q": query
    }
    try:
        response = requests.get(ckan_api_url, params=params)
        response.raise_for_status()  # Raise an HTTPError for bad responses (4xx or 5xx)
        data = response.json()
        
        if data["success"]:
            datasets = data["result"]["results"]
            if datasets:
                print(f"Found {len(datasets)} datasets matching '{query}':")
                for dataset in datasets:
                    print(f"- Title: {dataset['title']}")
                    print(f"  ID: {dataset['id']}")
                    print(f"  Organization: {dataset['organization']['title'] if dataset['organization'] else 'N/A'}")
                    print(f"  URL: https://www.avoindata.fi/en/dataset/{dataset['name']}")
                    print("\n")
            else:
                print(f"No datasets found matching '{query}'.")
        else:
            print(f"API request failed: {data['error']['message']}")
            
    except requests.exceptions.RequestException as e:
        print(f"An error occurred: {e}")

# Example usage:
search_datasets("Helsinki")

This Python script interacts with the CKAN API endpoint for package search. It constructs a GET request with a query parameter and then parses the JSON response to extract and display key information about the found datasets, such as their title, ID, organization, and a direct URL to the dataset page on avoindata.fi. For more advanced API usage, including filtering, sorting, and retrieving specific resource files, consult the official avoindata.fi API documentation.