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

The kind of data this API exposes, based on its documentation. We could not call the endpoint to confirm the exact field names.

Use case: Integrate slovakia government open data data into web and mobile applications
Open Government, Slovakia data via REST API

Example Response

Illustrative shape only — we were not able to call this endpoint (it requires credentials or exposes no public sample URL), so the fields below show the kind of data this API returns rather than a recorded response.

JSON Response · Illustrative
{
  "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

Calls a real endpoint of this API. Replace any placeholder credentials with your own key.

Request
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

Generated guidance based on this API's documentation, not observed by us. Treat it as a starting point and check against the provider's own error reference.

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.

Metadata Score Breakdown

Estimated from metadata — endpoint not independently tested

This score is estimated from observable metadata — HTTPS support, authentication model, declared CORS, and documentation reachability — because the API requires authentication or exposes no publicly testable endpoint. The five-signal breakdown is only shown for live-tested APIs.

Metadata estimate · endpoint not independently tested

Technical Specifications

Auth No Auth
HTTPS REQUIRED
CORS UNKNOWN
Category Government
Difficulty Beginner
Listing details not endpoint-verified

Similar APIs

View All →