City, Gdynia
Gdynia (PL) open-data catalogue over a CKAN API
The Polish city of Gdynia publishes its open data through a standard CKAN API, listing datasets that cover live public-transport arrivals, routes, timetables and more. The package_list endpoint returns dataset slugs as JSON with no key. Individual datasets are fetched by name from the same API.
GET https://otwartedane.gdynia.pl/api/3/action/package_list
{
"help": "https://otwartedane.gdynia.pl/api/3/action/help_show?name=package_list",
"success": true,
"result": [
"aktualne-czasy-przejazdu-dla-poszczegolnych-sekcji",
"aktualne-dane-o-komunikatach-wyswietlanych-na-tablicach-przystankowych"
]
}curl "https://otwartedane.gdynia.pl/api/3/action/package_list"const res = await fetch("https://otwartedane.gdynia.pl/api/3/action/package_list");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://otwartedane.gdynia.pl/api/3/action/package_list")
print(res.json())BROWSER CALLS BLOCKED (NO CORS/HTTPS) — USE THE CURL SNIPPET
/action/package_listPROBEDGdynia (PL) open-data catalogue over a CKAN API
/actionAction — documented GET route.
/action/1Action details by ID (example: 1).
/action?limit=10Action — documented GET route.
/action/search?q=testSearch by query parameters.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.
Stable. No schema drift observed since monitoring began — the response shape has not changed under our checks.
City, Gdynia: common questions
Is City, Gdynia free to use?
Yes — City, Gdynia is a free government API. Free tier: Free / open data. Whether the free tier allows commercial use is unclear — check the provider docs.
Does City, Gdynia need an API key?
No — City, Gdynia needs no API key or signup. You can call it straight away; rate limits still apply (Unpublished).
Can I call City, Gdynia from the browser?
Not directly — City, Gdynia doesn't send browser-friendly CORS headers, so call it from a server or proxy instead. Copy the curl or Python snippet on this page to get started.
Is City, Gdynia up right now?
As of our last scheduled check, City, Gdynia is healthy with 100% uptime over 90 days and a 1230 ms median response. We re-probe it every sweep — the status badge and uptime chart above always show the latest.