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
MIT-0
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & 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 zip
latestvk979xb51378dgdsy88wkkswpz17z6x5e

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

ParameterBeschreibungBeispiel
regionRegion (immer zurich für Stadt Zürich)zurich
areaPLZ oder Gebiet8003
typesKomma-separiert: waste, cardboard, paper, organic, special, mobile, incombustibles, chipping, metal, etram, cargotram, textilepaper,cardboard
startStartdatum (YYYY-MM-DD)2026-01-14
endEnddatum (YYYY-MM-DD)2026-01-31
sortSortierung (date, -date)date
limitMax. Anzahl Ergebnisse10

Abfalltypen

TypBeschreibung
wasteKehricht
cardboardKarton
paperPapier
organicGrüngut/Bioabfall
specialSonderabfall (Sammelstelle)
mobileMobile Sondersammlung
incombustiblesUnbrennbares
chippingHäckselservice
metalAltmetall
etramE-Tram
cargotramCargo-Tram
textileTextilien

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 total
Select a file
Select a file to preview.

Comments

Loading comments…