Open Data Hub Cli
/install open-data-hub-cli
Open Data Hub CLI
Use odh for public Open Data Hub API work. It is JSON-first, non-interactive, and suitable for scripts and agents.
Open Data Hub is maintained by NOI Techpark. Most practical Tourism and Mobility tasks are about South Tyrol / the Autonomous Province of Bolzano, but do not claim every returned record is located there unless coordinates, location fields, origin metadata, or official docs support it.
First Checks
Run these before relying on the CLI:
odh version
odh doctor --timeout 10s
If odh is not installed in a normal shell, install the latest release:
curl -fsSL https://raw.githubusercontent.com/galjos/odh-cli/main/scripts/install.sh | sh
Or build it from source:
go build -o odh ./cmd/odh
In OpenClaw, this skill declares odh as a required binary. If OpenClaw marks the skill as needing setup, use the offered installer before trying to answer with Open Data Hub data.
When running from a source checkout, use ./odh instead of odh.
API Discovery
List known API surfaces:
odh apis
Fetch OpenAPI specs as JSON:
odh openapi mobility
odh openapi tourism
Use odh call for known endpoints rather than scraping a UI:
odh call tourism /v1/ODHActivityPoi \
--param pagenumber=1 \
--param pagesize=1 \
--param seed=42
For geographic claims, inspect returned fields. Useful examples:
- Tourism:
GpsInfo,LocationInfo,RegionInfo,MunicipalityInfo,LicenseInfo. - Mobility:
sorigin,scode,stype,scoordinate,smetadata.
Curated Commands
Tourism point of interest:
odh tourism poi --limit 1 --seed 42 --fields Detail.en.Title,GpsInfo
Mobility latest measurements:
odh mobility latest \
--station-type EChargingStation \
--data-type number-available \
--limit 5
Mobility type and data-type discovery:
odh mobility types --kind event
odh mobility datatypes --station-type TrafficSensor --origin A22 --limit 100
A22 traffic diagnostics:
odh mobility events --origin A22 --latest --limit 20
odh a22 status --limit 10
Interpretation Rules
- Parse stdout as JSON.
- Treat nonzero exit codes as failures.
- Treat stderr as diagnostics, not data.
- Prefer
odhand official OpenAPI specs over scraping Open Data Hub web pages. - Treat South Tyrol as the common regional context, not as a universal record-level guarantee.
- Verify location-sensitive answers from coordinates, origins, and metadata in the JSON.
- Do not infer live A22 traffic from
TrafficForecastrows alone. - Prefer
odh a22 statusfor A22 because it reports current-event availability and warns when forecast rows are not current incident data. - Use
--whereand--param key=valueinstead of manually constructing query strings when a curated command supports them.
Official References
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install open-data-hub-cli - After installation, invoke the skill by name or use
/open-data-hub-cli - Provide required inputs per the skill's parameter spec and get structured output
What is Open Data Hub Cli?
Use this skill when working with Open Data Hub, NOI Techpark data, ODH APIs, Tourism API, Mobility API, A22 traffic data, or when an agent should query Open... It is an AI Agent Skill for Claude Code / OpenClaw, with 165 downloads so far.
How do I install Open Data Hub Cli?
Run "/install open-data-hub-cli" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is Open Data Hub Cli free?
Yes, Open Data Hub Cli is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does Open Data Hub Cli support?
Open Data Hub Cli is cross-platform and runs anywhere OpenClaw / Claude Code is available (darwin, linux).
Who created Open Data Hub Cli?
It is built and maintained by Josef M. Gallmetzer (@galjos); the current version is v0.1.3.