ERZ Entsorgung + Recycling Zürich
Abfuhrkalender für Zürich via OpenERZ API. Nutze bei Fragen zu Kehricht, Karton, Papier, Grüngut, Sonderabfall oder Entsorgungsterminen im Raum Zürich.
MIT-0 · Free to use, modify, and redistribute. No attribution required.
⭐ 3 · 1.5k · 0 current installs · 0 all-time installs
by@MBjoern
MIT-0
Security Scan
OpenClaw
Benign
high confidencePurpose & Capability
Name/description are an Abfuhrkalender for Zürich and the only requested action is calling the OpenERZ API endpoint (openerz.metaodi.ch). No unrelated credentials, binaries, or installs are required.
Instruction Scope
SKILL.md contains parameters and curl examples that call the stated API and describe the response format. It does not instruct reading local files, environment variables, or transmitting data to other endpoints beyond the named API.
Install Mechanism
No install spec or code files are present; this is instruction-only, so nothing is written to disk or fetched during install.
Credentials
The skill requires no environment variables or credentials. The data it uses (region, area/postcode, dates, waste types) is proportional to the stated function.
Persistence & Privilege
always:false and default invocation settings are used. The skill does not request persistent system-level privileges or modify other skills' configs.
Assessment
This skill is a simple instruction-only integration that calls a public API (openerz.metaodi.ch) to fetch waste-collection dates for Zürich. Consider the following before installing: 1) Network access: the agent will need outbound HTTP access to openerz.metaodi.ch to function. 2) Data sensitivity: queries include a postcode/area and dates — not typically sensitive, but avoid sending private location data if you have privacy concerns. 3) Endpoint trust: the skill's source is unknown; if you want stronger assurance, verify the openerz.metaodi.ch service/operator or prefer an official city data source. 4) No credentials or installs are required, and the skill does not request extra system access. If you accept the agent contacting that API, the skill is coherent with its stated purpose.Like a lobster shell, security has layers — review code before you run it.
Current versionv1.0.0
Download ziplatest
License
MIT-0
Free to use, modify, and redistribute. No attribution required.
SKILL.md
OpenERZ – Abfuhrkalender Zürich
API für Entsorgungstermine in Zürich.
Benutzer-Defaults
- Region:
zurich - Area/PLZ:
8003
API-Endpunkt
https://openerz.metaodi.ch/api/calendar
Parameter
| Parameter | Beschreibung | Beispiel |
|---|---|---|
region | Region (immer zurich für Stadt Zürich) | zurich |
area | PLZ oder Gebiet | 8003 |
types | Komma-separiert: waste, cardboard, paper, organic, special, mobile, incombustibles, chipping, metal, etram, cargotram, textile | paper,cardboard |
start | Startdatum (YYYY-MM-DD) | 2026-01-14 |
end | Enddatum (YYYY-MM-DD) | 2026-01-31 |
sort | Sortierung (date, -date) | date |
limit | Max. Anzahl Ergebnisse | 10 |
Abfalltypen
| Typ | Beschreibung |
|---|---|
waste | Kehricht |
cardboard | Karton |
paper | Papier |
organic | Grüngut/Bioabfall |
special | Sonderabfall (Sammelstelle) |
mobile | Mobile Sondersammlung |
incombustibles | Unbrennbares |
chipping | Häckselservice |
metal | Altmetall |
etram | E-Tram |
cargotram | Cargo-Tram |
textile | Textilien |
Beispielanfragen
Nächste Abholungen:
curl "https://openerz.metaodi.ch/api/calendar?region=zurich&area=8003&start=$(date +%Y-%m-%d)&limit=5&sort=date"
Nur Papier/Karton:
curl "https://openerz.metaodi.ch/api/calendar?region=zurich&area=8003&types=paper,cardboard&start=$(date +%Y-%m-%d)&limit=5"
Antwortformat
{
"_metadata": {"total_count": 5, "row_count": 5},
"result": [
{
"date": "2026-01-15",
"waste_type": "waste",
"zip": 8003,
"area": "8003",
"station": "",
"region": "zurich",
"description": ""
}
]
}
Bei mobile oder special enthält station den Sammelort.
Files
1 totalSelect a file
Select a file to preview.
Comments
Loading comments…
