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.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Open provider docs ↗
On our probe schedule. Uptime charts appear after the first check lands.
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.
Not tracked yet. Shape-change history starts once this API joins our probe schedule.
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?
City, Gdynia is catalogued but not yet on our probe schedule, so we don't publish a live status for it. Check the provider's own status page or docs for its current state.