Open Government, Slovakia API

Free to Use Varies (check documentation)

Overview

The Slovakia Open Government Data API (data.slovensko.sk) provides free access to official datasets from Slovak public institutions, covering areas like public administration, environment, and social services. No API key is required, and the portal follows the DCAT-AP standard commonly used across European Union open data platforms. It's a useful resource for developers building civic or research applications focused on Central Europe.

💡

Beginner Tip

The Slovak portal uses DCAT-AP, so datasets can be accessed via standard SPARQL queries or dataset metadata endpoints. Check the portal's developer documentation for the supported query format before starting.

Available Data

Use case: Integrate slovakia government open data data into web and mobile applications
Open Government, Slovakia data via REST API
JSON-formatted response data
Freely accessible without authentication

Example Response

JSON Response
{
  "status": "success",
  "data": {
    "result": "Data from Open Government, Slovakia",
    "description": "Slovakia Government Open Data",
    "timestamp": "2025-01-15T10:00:00Z"
  }
}

Field Reference

id Unique identifier for the dataset in the Slovak data portal.
title Dataset title, typically in Slovak.
description Detailed description of the dataset contents.
publisher The public institution that published the dataset.
distributions List of download formats and URLs where the data can be accessed.
keywords Tags or keywords associated with the dataset for discovery.

Implementation Example

const url = "https://data.gov.sk/en/";
const response = await fetch(url);
if (!response.ok) throw new Error(`Request failed: ${response.status}`);
const data = await response.json();
console.log(data);

What Can You Build?

Note: These code examples are AI-generated and unverified. Always refer to the official API documentation for accurate usage.

Common Errors & Troubleshooting

Slovak-only metadata Most dataset titles and descriptions are in Slovak (sk locale).
Use translation tools to interpret metadata, or filter datasets using official category codes listed in the documentation.
Unexpected API structure The portal may use DCAT-AP/JSON-LD format rather than the standard CKAN structure.
Read the developer documentation at data.slovensko.sk carefully, as the API format differs from CKAN-based portals.
Empty dataset results Query parameters may not match the expected format for this portal.
Review the official API specification for correct parameter names and allowed values.

Matrix Score Breakdown

🌐 Reachability 30/30
⚡ Speed 15/20
🔒 Security 15/15
🛠 Developer XP 15/20
✓ Reliability 7/15
Response Time 295ms

Fully tested on Apr 5, 2026

Technical Specifications

Auth No Auth
HTTPS REQUIRED
CORS UNKNOWN
Category Government
Difficulty Beginner
Verified: 2026-04-07

Similar APIs

View All →