Skip to content

[Bug]: Abfall.io not working for "Landkreis Heilbronn" #3735

Description

@miggi92

I Have A Problem With:

The integration in general

What's Your Problem

I couldn't set up the Abfall.io integration.
Not via yaml nor config flow.

On the config flow I'm getting the info, that the source did not send any response.

Image

Source (if relevant)

https://www.aw-landkreis-heilbronn.de/abfall-entsorgen/abfuhrtermine/abfallkalender/

Logs

no relevant logs.

Relevant Configuration

waste_collection_schedule:
  sources:
    - name: abfall_io
      args:
        key: !secret abfall_key
        f_id_kommune: !secret abfall_municipality
        f_id_strasse: !secret abfall_street
        f_abfallarten:
          - 28

Checklist Source Error

  • Use the example parameters for your source (often available in the documentation) (don't forget to restart Home Assistant after changing the configuration)
  • Checked that the website of your service provider is still working
  • Tested my attributes on the service provider website (if possible)
  • I have tested with the latest version of the integration (master) (for HACS in the 3 dot menu of the integration click on "Redownload" and choose master as version)

Checklist Sensor Error

  • Checked in the Home Assistant Calendar tab if the event names match the types names (if types argument is used)

Required

  • I have searched past (closed AND opened) issues to see if this bug has already been reported, and it hasn't been.
  • I understand that people give their precious time for free, and thus I've done my very best to make this problem as easy as possible to investigate.

Analysis

On the website I noticed that the data is fetched via GraphQL. (Url: https://widgets.abfall.io/graphql )
Maybe it needs to be changed?

An example from the source website
curl 'https://widgets.abfall.io/graphql' \
  -H 'accept: */*' \
  -H 'accept-language: de,de-DE;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,es;q=0.5' \
  -H 'cache-control: no-cache' \
  -H 'content-type: application/json' \
  -H 'origin: https://www.aw-landkreis-heilbronn.de' \
  -H 'pragma: no-cache' \
  -H 'priority: u=1, i' \
  -H 'referer: https://www.aw-landkreis-heilbronn.de/' \
  -H 'sec-ch-ua: "Not A(Brand";v="8", "Chromium";v="132", "Microsoft Edge";v="132"' \
  -H 'sec-ch-ua-mobile: ?0' \
  -H 'sec-ch-ua-platform: "Windows"' \
  -H 'sec-fetch-dest: empty' \
  -H 'sec-fetch-mode: cors' \
  -H 'sec-fetch-site: cross-site' \
  -H 'user-agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36 Edg/132.0.0.0' \
  -H 'x-abfallplus-api-key: 18adb00cb5135f6aa16b5fdea6dae2c63a507ae0f836540e' \
  --data-raw $'{"query":"\\n                query Query($idHouseNumber: ID\u0021, $wasteTypes: [ID], $dateMin: Date, $dateMax: Date, $showInactive: Boolean) {\\n                    appointments(idHouseNumber: $idHouseNumber, wasteTypes: $wasteTypes, dateMin: $dateMin, dateMax: $dateMax, showInactive: $showInactive) {\\n                      id\\n                      date\\n                      time\\n                      location\\n                      note\\n                      wasteType {\\n                        id\\n                        name\\n                        color\\n                        internals {\\n                            pdfLegend\\n                            iconLow\\n                        }\\n                      }\\n                    }\\n                  }\\n                    ","variables":{"idHouseNumber":"352","wasteTypes":["28","19","31","654"],"dateMin":"2025-01-01","dateMax":"2025-12-31","showInactive":false}}'

Response:

Details

Another example from the same region:

Neckarsulm
idHouseNumber: "304"
wasteTypes: ["28", "19", "31", "654"]

Example response JSON
{
    "data": {
        "appointments": [
            {
                "id": "202947",
                "date": "2025-01-04",
                "time": null,
                "location": null,
                "note": null,
                "wasteType": {
                    "id": "31",
                    "name": "Restmüll",
                    "color": "#637e8c",
                    "internals": {
                        "pdfLegend": null,
                        "iconLow": "https://app.abfallplus.de/media/landkreise/landkreis316/icons/30x30-graue-tonne.png"
                    }
                }
            },
            {
                "id": "202916",
                "date": "2025-01-11",
                "time": null,
                "location": null,
                "note": null,
                "wasteType": {
                    "id": "28",
                    "name": "Bioabfall",
                    "color": "#cf9a13",
                    "internals": {
                        "pdfLegend": null,
                        "iconLow": "https://app.abfallplus.de/media/landkreise/landkreis316/icons/30x30-braune-tonne.png"
                    }
                }
            },
            {
                "id": "203637",
                "date": "2025-01-11",
                "time": null,
                "location": null,
                "note": null,
                "wasteType": {
                    "id": "19",
                    "name": "Papiertonne",
                    "color": "#2aabe2",
                    "internals": {
                        "pdfLegend": null,
                        "iconLow": "https://app.abfallplus.de/media/landkreise/landkreis316/icons/30x30-papier-tonne.png"
                    }
                }
            },
            {
                "id": "202948",
                "date": "2025-01-17",
                "time": null,
                "location": null,
                "note": null,
                "wasteType": {
                    "id": "31",
                    "name": "Restmüll",
                    "color": "#637e8c",
                    "internals": {
                        "pdfLegend": null,
                        "iconLow": "https://app.abfallplus.de/media/landkreise/landkreis316/icons/30x30-graue-tonne.png"
                    }
                }
            },
            {
                "id": "202917",
                "date": "2025-01-23",
                "time": null,
                "location": null,
                "note": null,
                "wasteType": {
                    "id": "28",
                    "name": "Bioabfall",
                    "color": "#cf9a13",
                    "internals": {
                        "pdfLegend": null,
                        "iconLow": "https://app.abfallplus.de/media/landkreise/landkreis316/icons/30x30-braune-tonne.png"
                    }
                }
            },
            {
                "id": "202949",
                "date": "2025-01-29",
                "time": null,
                "location": null,
                "note": null,
                "wasteType": {
                    "id": "31",
                    "name": "Restmüll",
                    "color": "#637e8c",
                    "internals": {
                        "pdfLegend": null,
                        "iconLow": "https://app.abfallplus.de/media/landkreise/landkreis316/icons/30x30-graue-tonne.png"
                    }
                }
            },
            {
                "id": "202918",
                "date": "2025-02-05",
                "time": null,
                "location": null,
                "note": null,
                "wasteType": {
                    "id": "28",
                    "name": "Bioabfall",
                    "color": "#cf9a13",
                    "internals": {
                        "pdfLegend": null,
                        "iconLow": "https://app.abfallplus.de/media/landkreise/landkreis316/icons/30x30-braune-tonne.png"
                    }
                }
            },
            {
                "id": "203638",
                "date": "2025-02-07",
                "time": null,
                "location": null,
                "note": null,
                "wasteType": {
                    "id": "19",
                    "name": "Papiertonne",
                    "color": "#2aabe2",
                    "internals": {
                        "pdfLegend": null,
                        "iconLow": "https://app.abfallplus.de/media/landkreise/landkreis316/icons/30x30-papier-tonne.png"
                    }
                }
            },
            {
                "id": "202950",
                "date": "2025-02-12",
                "time": null,
                "location": null,
                "note": null,
                "wasteType": {
                    "id": "31",
                    "name": "Restmüll",
                    "color": "#637e8c",
                    "internals": {
                        "pdfLegend": null,
                        "iconLow": "https://app.abfallplus.de/media/landkreise/landkreis316/icons/30x30-graue-tonne.png"
                    }
                }
            },
            {
                "id": "202919",
                "date": "2025-02-19",
                "time": null,
                "location": null,
                "note": null,
                "wasteType": {
                    "id": "28",
                    "name": "Bioabfall",
                    "color": "#cf9a13",
                    "internals": {
                        "pdfLegend": null,
                        "iconLow": "https://app.abfallplus.de/media/landkreise/landkreis316/icons/30x30-braune-tonne.png"
                    }
                }
            },
            {
                "id": "202951",
                "date": "2025-02-26",
                "time": null,
                "location": null,
                "note": null,
                "wasteType": {
                    "id": "31",
                    "name": "Restmüll",
                    "color": "#637e8c",
                    "internals": {
                        "pdfLegend": null,
                        "iconLow": "https://app.abfallplus.de/media/landkreise/landkreis316/icons/30x30-graue-tonne.png"
                    }
                }
            },
            {
                "id": "202920",
                "date": "2025-03-05",
                "time": null,
                "location": null,
                "note": null,
                "wasteType": {
                    "id": "28",
                    "name": "Bioabfall",
                    "color": "#cf9a13",
                    "internals": {
                        "pdfLegend": null,
                        "iconLow": "https://app.abfallplus.de/media/landkreise/landkreis316/icons/30x30-braune-tonne.png"
                    }
                }
            },
            {
                "id": "203639",
                "date": "2025-03-07",
                "time": null,
                "location": null,
                "note": null,
                "wasteType": {
                    "id": "19",
                    "name": "Papiertonne",
                    "color": "#2aabe2",
                    "internals": {
                        "pdfLegend": null,
                        "iconLow": "https://app.abfallplus.de/media/landkreise/landkreis316/icons/30x30-papier-tonne.png"
                    }
                }
            },
            {
                "id": "202952",
                "date": "2025-03-12",
                "time": null,
                "location": null,
                "note": null,
                "wasteType": {
                    "id": "31",
                    "name": "Restmüll",
                    "color": "#637e8c",
                    "internals": {
                        "pdfLegend": null,
                        "iconLow": "https://app.abfallplus.de/media/landkreise/landkreis316/icons/30x30-graue-tonne.png"
                    }
                }
            },
            {
                "id": "205952",
                "date": "2025-03-13",
                "time": "15:00-16:00",
                "location": "Eberstadt, Entsorgungszentrum Eberstadt",
                "note": null,
                "wasteType": {
                    "id": "654",
                    "name": "Schadstoffe",
                    "color": "#d51316",
                    "internals": {
                        "pdfLegend": "Schadstoffe, bitte Sammelplatz des Schadstoffmobils beachten",
                        "iconLow": "https://app.abfallplus.de/media/landkreise/landkreis316/icons/sm30.png"
                    }
                }
            },
            {
                "id": "202921",
                "date": "2025-03-19",
                "time": null,
                "location": null,
                "note": null,
                "wasteType": {
                    "id": "28",
                    "name": "Bioabfall",
                    "color": "#cf9a13",
                    "internals": {
                        "pdfLegend": null,
                        "iconLow": "https://app.abfallplus.de/media/landkreise/landkreis316/icons/30x30-braune-tonne.png"
                    }
                }
            },
            {
                "id": "202953",
                "date": "2025-03-26",
                "time": null,
                "location": null,
                "note": null,
                "wasteType": {
                    "id": "31",
                    "name": "Restmüll",
                    "color": "#637e8c",
                    "internals": {
                        "pdfLegend": null,
                        "iconLow": "https://app.abfallplus.de/media/landkreise/landkreis316/icons/30x30-graue-tonne.png"
                    }
                }
            },
            {
                "id": "202922",
                "date": "2025-04-02",
                "time": null,
                "location": null,
                "note": null,
                "wasteType": {
                    "id": "28",
                    "name": "Bioabfall",
                    "color": "#cf9a13",
                    "internals": {
                        "pdfLegend": null,
                        "iconLow": "https://app.abfallplus.de/media/landkreise/landkreis316/icons/30x30-braune-tonne.png"
                    }
                }
            },
            {
                "id": "203640",
                "date": "2025-04-04",
                "time": null,
                "location": null,
                "note": null,
                "wasteType": {
                    "id": "19",
                    "name": "Papiertonne",
                    "color": "#2aabe2",
                    "internals": {
                        "pdfLegend": null,
                        "iconLow": "https://app.abfallplus.de/media/landkreise/landkreis316/icons/30x30-papier-tonne.png"
                    }
                }
            },
            {
                "id": "202954",
                "date": "2025-04-09",
                "time": null,
                "location": null,
                "note": null,
                "wasteType": {
                    "id": "31",
                    "name": "Restmüll",
                    "color": "#637e8c",
                    "internals": {
                        "pdfLegend": null,
                        "iconLow": "https://app.abfallplus.de/media/landkreise/landkreis316/icons/30x30-graue-tonne.png"
                    }
                }
            },
            {
                "id": "205953",
                "date": "2025-04-12",
                "time": "09:00-10:30",
                "location": "Weinsberg, Parkplatz bei der Weibertreuhalle",
                "note": null,
                "wasteType": {
                    "id": "654",
                    "name": "Schadstoffe",
                    "color": "#d51316",
                    "internals": {
                        "pdfLegend": "Schadstoffe, bitte Sammelplatz des Schadstoffmobils beachten",
                        "iconLow": "https://app.abfallplus.de/media/landkreise/landkreis316/icons/sm30.png"
                    }
                }
            },
            {
                "id": "205954",
                "date": "2025-04-12",
                "time": "12:30-13:00",
                "location": "Weinsberg, Grantschen, Ellhofener Str., Weizenäck.",
                "note": null,
                "wasteType": {
                    "id": "654",
                    "name": "Schadstoffe",
                    "color": "#d51316",
                    "internals": {
                        "pdfLegend": "Schadstoffe, bitte Sammelplatz des Schadstoffmobils beachten",
                        "iconLow": "https://app.abfallplus.de/media/landkreise/landkreis316/icons/sm30.png"
                    }
                }
            },
            {
                "id": "202923",
                "date": "2025-04-16",
                "time": null,
                "location": null,
                "note": null,
                "wasteType": {
                    "id": "28",
                    "name": "Bioabfall",
                    "color": "#cf9a13",
                    "internals": {
                        "pdfLegend": null,
                        "iconLow": "https://app.abfallplus.de/media/landkreise/landkreis316/icons/30x30-braune-tonne.png"
                    }
                }
            },
            {
                "id": "202955",
                "date": "2025-04-24",
                "time": null,
                "location": null,
                "note": null,
                "wasteType": {
                    "id": "31",
                    "name": "Restmüll",
                    "color": "#637e8c",
                    "internals": {
                        "pdfLegend": null,
                        "iconLow": "https://app.abfallplus.de/media/landkreise/landkreis316/icons/30x30-graue-tonne.png"
                    }
                }
            },
            {
                "id": "205955",
                "date": "2025-04-26",
                "time": "14:30-16:00",
                "location": "Neckarsulm, Recyclinghof, Rötelstraße 3",
                "note": null,
                "wasteType": {
                    "id": "654",
                    "name": "Schadstoffe",
                    "color": "#d51316",
                    "internals": {
                        "pdfLegend": "Schadstoffe, bitte Sammelplatz des Schadstoffmobils beachten",
                        "iconLow": "https://app.abfallplus.de/media/landkreise/landkreis316/icons/sm30.png"
                    }
                }
            },
            {
                "id": "205956",
                "date": "2025-04-26",
                "time": "14:30-16:00",
                "location": "Neckarsulm, Recyclinghof, Rötelstraße 3",
                "note": null,
                "wasteType": {
                    "id": "654",
                    "name": "Schadstoffe",
                    "color": "#d51316",
                    "internals": {
                        "pdfLegend": "Schadstoffe, bitte Sammelplatz des Schadstoffmobils beachten",
                        "iconLow": "https://app.abfallplus.de/media/landkreise/landkreis316/icons/sm30.png"
                    }
                }
            },
            {
                "id": "202924",
                "date": "2025-04-30",
                "time": null,
                "location": null,
                "note": null,
                "wasteType": {
                    "id": "28",
                    "name": "Bioabfall",
                    "color": "#cf9a13",
                    "internals": {
                        "pdfLegend": null,
                        "iconLow": "https://app.abfallplus.de/media/landkreise/landkreis316/icons/30x30-braune-tonne.png"
                    }
                }
            },
            {
                "id": "203641",
                "date": "2025-05-03",
                "time": null,
                "location": null,
                "note": null,
                "wasteType": {
                    "id": "19",
                    "name": "Papiertonne",
                    "color": "#2aabe2",
                    "internals": {
                        "pdfLegend": null,
                        "iconLow": "https://app.abfallplus.de/media/landkreise/landkreis316/icons/30x30-papier-tonne.png"
                    }
                }
            },
            {
                "id": "205957",
                "date": "2025-05-03",
                "time": "14:00-15:00",
                "location": "Eberstadt, Eberfürsthalle, P auf asphalt. Teil",
                "note": null,
                "wasteType": {
                    "id": "654",
                    "name": "Schadstoffe",
                    "color": "#d51316",
                    "internals": {
                        "pdfLegend": "Schadstoffe, bitte Sammelplatz des Schadstoffmobils beachten",
                        "iconLow": "https://app.abfallplus.de/media/landkreise/landkreis316/icons/sm30.png"
                    }
                }
            },
            {
                "id": "205958",
                "date": "2025-05-03",
                "time": "15:30-16:00",
                "location": "Weinsberg, Gellmersbach, Dahenfelder Str. Parkplatz beim Schützenhaus",
                "note": null,
                "wasteType": {
                    "id": "654",
                    "name": "Schadstoffe",
                    "color": "#d51316",
                    "internals": {
                        "pdfLegend": "Schadstoffe, bitte Sammelplatz des Schadstoffmobils beachten",
                        "iconLow": "https://app.abfallplus.de/media/landkreise/landkreis316/icons/sm30.png"
                    }
                }
            },
            {
                "id": "202956",
                "date": "2025-05-07",
                "time": null,
                "location": null,
                "note": null,
                "wasteType": {
                    "id": "31",
                    "name": "Restmüll",
                    "color": "#637e8c",
                    "internals": {
                        "pdfLegend": null,
                        "iconLow": "https://app.abfallplus.de/media/landkreise/landkreis316/icons/30x30-graue-tonne.png"
                    }
                }
            },
            {
                "id": "202925",
                "date": "2025-05-14",
                "time": null,
                "location": null,
                "note": null,
                "wasteType": {
                    "id": "28",
                    "name": "Bioabfall",
                    "color": "#cf9a13",
                    "internals": {
                        "pdfLegend": null,
                        "iconLow": "https://app.abfallplus.de/media/landkreise/landkreis316/icons/30x30-braune-tonne.png"
                    }
                }
            },
            {
                "id": "202957",
                "date": "2025-05-21",
                "time": null,
                "location": null,
                "note": null,
                "wasteType": {
                    "id": "31",
                    "name": "Restmüll",
                    "color": "#637e8c",
                    "internals": {
                        "pdfLegend": null,
                        "iconLow": "https://app.abfallplus.de/media/landkreise/landkreis316/icons/30x30-graue-tonne.png"
                    }
                }
            },
            {
                "id": "202926",
                "date": "2025-05-28",
                "time": null,
                "location": null,
                "note": null,
                "wasteType": {
                    "id": "28",
                    "name": "Bioabfall",
                    "color": "#cf9a13",
                    "internals": {
                        "pdfLegend": null,
                        "iconLow": "https://app.abfallplus.de/media/landkreise/landkreis316/icons/30x30-braune-tonne.png"
                    }
                }
            },
            {
                "id": "203642",
                "date": "2025-05-31",
                "time": null,
                "location": null,
                "note": null,
                "wasteType": {
                    "id": "19",
                    "name": "Papiertonne",
                    "color": "#2aabe2",
                    "internals": {
                        "pdfLegend": null,
                        "iconLow": "https://app.abfallplus.de/media/landkreise/landkreis316/icons/30x30-papier-tonne.png"
                    }
                }
            },
            {
                "id": "202958",
                "date": "2025-06-04",
                "time": null,
                "location": null,
                "note": null,
                "wasteType": {
                    "id": "31",
                    "name": "Restmüll",
                    "color": "#637e8c",
                    "internals": {
                        "pdfLegend": null,
                        "iconLow": "https://app.abfallplus.de/media/landkreise/landkreis316/icons/30x30-graue-tonne.png"
                    }
                }
            },
            {
                "id": "202927",
                "date": "2025-06-12",
                "time": null,
                "location": null,
                "note": null,
                "wasteType": {
                    "id": "28",
                    "name": "Bioabfall",
                    "color": "#cf9a13",
                    "internals": {
                        "pdfLegend": null,
                        "iconLow": "https://app.abfallplus.de/media/landkreise/landkreis316/icons/30x30-braune-tonne.png"
                    }
                }
            },
            {
                "id": "202942",
                "date": "2025-06-18",
                "time": null,
                "location": null,
                "note": null,
                "wasteType": {
                    "id": "28",
                    "name": "Bioabfall",
                    "color": "#cf9a13",
                    "internals": {
                        "pdfLegend": null,
                        "iconLow": "https://app.abfallplus.de/media/landkreise/landkreis316/icons/30x30-braune-tonne.png"
                    }
                }
            },
            {
                "id": "202959",
                "date": "2025-06-18",
                "time": null,
                "location": null,
                "note": null,
                "wasteType": {
                    "id": "31",
                    "name": "Restmüll",
                    "color": "#637e8c",
                    "internals": {
                        "pdfLegend": null,
                        "iconLow": "https://app.abfallplus.de/media/landkreise/landkreis316/icons/30x30-graue-tonne.png"
                    }
                }
            },
            {
                "id": "202928",
                "date": "2025-06-25",
                "time": null,
                "location": null,
                "note": null,
                "wasteType": {
                    "id": "28",
                    "name": "Bioabfall",
                    "color": "#cf9a13",
                    "internals": {
                        "pdfLegend": null,
                        "iconLow": "https://app.abfallplus.de/media/landkreise/landkreis316/icons/30x30-braune-tonne.png"
                    }
                }
            },
            {
                "id": "203643",
                "date": "2025-06-27",
                "time": null,
                "location": null,
                "note": null,
                "wasteType": {
                    "id": "19",
                    "name": "Papiertonne",
                    "color": "#2aabe2",
                    "internals": {
                        "pdfLegend": null,
                        "iconLow": "https://app.abfallplus.de/media/landkreise/landkreis316/icons/30x30-papier-tonne.png"
                    }
                }
            },
            {
                "id": "202960",
                "date": "2025-07-02",
                "time": null,
                "location": null,
                "note": null,
                "wasteType": {
                    "id": "31",
                    "name": "Restmüll",
                    "color": "#637e8c",
                    "internals": {
                        "pdfLegend": null,
                        "iconLow": "https://app.abfallplus.de/media/landkreise/landkreis316/icons/30x30-graue-tonne.png"
                    }
                }
            },
            {
                "id": "202943",
                "date": "2025-07-02",
                "time": null,
                "location": null,
                "note": null,
                "wasteType": {
                    "id": "28",
                    "name": "Bioabfall",
                    "color": "#cf9a13",
                    "internals": {
                        "pdfLegend": null,
                        "iconLow": "https://app.abfallplus.de/media/landkreise/landkreis316/icons/30x30-braune-tonne.png"
                    }
                }
            },
            {
                "id": "202929",
                "date": "2025-07-09",
                "time": null,
                "location": null,
                "note": null,
                "wasteType": {
                    "id": "28",
                    "name": "Bioabfall",
                    "color": "#cf9a13",
                    "internals": {
                        "pdfLegend": null,
                        "iconLow": "https://app.abfallplus.de/media/landkreise/landkreis316/icons/30x30-braune-tonne.png"
                    }
                }
            },
            {
                "id": "202961",
                "date": "2025-07-16",
                "time": null,
                "location": null,
                "note": null,
                "wasteType": {
                    "id": "31",
                    "name": "Restmüll",
                    "color": "#637e8c",
                    "internals": {
                        "pdfLegend": null,
                        "iconLow": "https://app.abfallplus.de/media/landkreise/landkreis316/icons/30x30-graue-tonne.png"
                    }
                }
            },
            {
                "id": "202944",
                "date": "2025-07-16",
                "time": null,
                "location": null,
                "note": null,
                "wasteType": {
                    "id": "28",
                    "name": "Bioabfall",
                    "color": "#cf9a13",
                    "internals": {
                        "pdfLegend": null,
                        "iconLow": "https://app.abfallplus.de/media/landkreise/landkreis316/icons/30x30-braune-tonne.png"
                    }
                }
            },
            {
                "id": "202930",
                "date": "2025-07-23",
                "time": null,
                "location": null,
                "note": null,
                "wasteType": {
                    "id": "28",
                    "name": "Bioabfall",
                    "color": "#cf9a13",
                    "internals": {
                        "pdfLegend": null,
                        "iconLow": "https://app.abfallplus.de/media/landkreise/landkreis316/icons/30x30-braune-tonne.png"
                    }
                }
            },
            {
                "id": "203644",
                "date": "2025-07-25",
                "time": null,
                "location": null,
                "note": null,
                "wasteType": {
                    "id": "19",
                    "name": "Papiertonne",
                    "color": "#2aabe2",
                    "internals": {
                        "pdfLegend": null,
                        "iconLow": "https://app.abfallplus.de/media/landkreise/landkreis316/icons/30x30-papier-tonne.png"
                    }
                }
            },
            {
                "id": "202962",
                "date": "2025-07-30",
                "time": null,
                "location": null,
                "note": null,
                "wasteType": {
                    "id": "31",
                    "name": "Restmüll",
                    "color": "#637e8c",
                    "internals": {
                        "pdfLegend": null,
                        "iconLow": "https://app.abfallplus.de/media/landkreise/landkreis316/icons/30x30-graue-tonne.png"
                    }
                }
            },
            {
                "id": "202945",
                "date": "2025-07-30",
                "time": null,
                "location": null,
                "note": null,
                "wasteType": {
                    "id": "28",
                    "name": "Bioabfall",
                    "color": "#cf9a13",
                    "internals": {
                        "pdfLegend": null,
                        "iconLow": "https://app.abfallplus.de/media/landkreise/landkreis316/icons/30x30-braune-tonne.png"
                    }
                }
            },
            {
                "id": "202931",
                "date": "2025-08-06",
                "time": null,
                "location": null,
                "note": null,
                "wasteType": {
                    "id": "28",
                    "name": "Bioabfall",
                    "color": "#cf9a13",
                    "internals": {
                        "pdfLegend": null,
                        "iconLow": "https://app.abfallplus.de/media/landkreise/landkreis316/icons/30x30-braune-tonne.png"
                    }
                }
            },
            {
                "id": "202963",
                "date": "2025-08-13",
                "time": null,
                "location": null,
                "note": null,
                "wasteType": {
                    "id": "31",
                    "name": "Restmüll",
                    "color": "#637e8c",
                    "internals": {
                        "pdfLegend": null,
                        "iconLow": "https://app.abfallplus.de/media/landkreise/landkreis316/icons/30x30-graue-tonne.png"
                    }
                }
            },
            {
                "id": "202946",
                "date": "2025-08-13",
                "time": null,
                "location": null,
                "note": null,
                "wasteType": {
                    "id": "28",
                    "name": "Bioabfall",
                    "color": "#cf9a13",
                    "internals": {
                        "pdfLegend": null,
                        "iconLow": "https://app.abfallplus.de/media/landkreise/landkreis316/icons/30x30-braune-tonne.png"
                    }
                }
            },
            {
                "id": "202932",
                "date": "2025-08-20",
                "time": null,
                "location": null,
                "note": null,
                "wasteType": {
                    "id": "28",
                    "name": "Bioabfall",
                    "color": "#cf9a13",
                    "internals": {
                        "pdfLegend": null,
                        "iconLow": "https://app.abfallplus.de/media/landkreise/landkreis316/icons/30x30-braune-tonne.png"
                    }
                }
            },
            {
                "id": "203645",
                "date": "2025-08-22",
                "time": null,
                "location": null,
                "note": null,
                "wasteType": {
                    "id": "19",
                    "name": "Papiertonne",
                    "color": "#2aabe2",
                    "internals": {
                        "pdfLegend": null,
                        "iconLow": "https://app.abfallplus.de/media/landkreise/landkreis316/icons/30x30-papier-tonne.png"
                    }
                }
            },
            {
                "id": "202964",
                "date": "2025-08-27",
                "time": null,
                "location": null,
                "note": null,
                "wasteType": {
                    "id": "31",
                    "name": "Restmüll",
                    "color": "#637e8c",
                    "internals": {
                        "pdfLegend": null,
                        "iconLow": "https://app.abfallplus.de/media/landkreise/landkreis316/icons/30x30-graue-tonne.png"
                    }
                }
            },
            {
                "id": "202933",
                "date": "2025-09-03",
                "time": null,
                "location": null,
                "note": null,
                "wasteType": {
                    "id": "28",
                    "name": "Bioabfall",
                    "color": "#cf9a13",
                    "internals": {
                        "pdfLegend": null,
                        "iconLow": "https://app.abfallplus.de/media/landkreise/landkreis316/icons/30x30-braune-tonne.png"
                    }
                }
            },
            {
                "id": "202965",
                "date": "2025-09-10",
                "time": null,
                "location": null,
                "note": null,
                "wasteType": {
                    "id": "31",
                    "name": "Restmüll",
                    "color": "#637e8c",
                    "internals": {
                        "pdfLegend": null,
                        "iconLow": "https://app.abfallplus.de/media/landkreise/landkreis316/icons/30x30-graue-tonne.png"
                    }
                }
            },
            {
                "id": "202934",
                "date": "2025-09-17",
                "time": null,
                "location": null,
                "note": null,
                "wasteType": {
                    "id": "28",
                    "name": "Bioabfall",
                    "color": "#cf9a13",
                    "internals": {
                        "pdfLegend": null,
                        "iconLow": "https://app.abfallplus.de/media/landkreise/landkreis316/icons/30x30-braune-tonne.png"
                    }
                }
            },
            {
                "id": "205959",
                "date": "2025-09-18",
                "time": "15:00-16:00",
                "location": "Eberstadt, Entsorgungszentrum Eberstadt",
                "note": null,
                "wasteType": {
                    "id": "654",
                    "name": "Schadstoffe",
                    "color": "#d51316",
                    "internals": {
                        "pdfLegend": "Schadstoffe, bitte Sammelplatz des Schadstoffmobils beachten",
                        "iconLow": "https://app.abfallplus.de/media/landkreise/landkreis316/icons/sm30.png"
                    }
                }
            },
            {
                "id": "203646",
                "date": "2025-09-19",
                "time": null,
                "location": null,
                "note": null,
                "wasteType": {
                    "id": "19",
                    "name": "Papiertonne",
                    "color": "#2aabe2",
                    "internals": {
                        "pdfLegend": null,
                        "iconLow": "https://app.abfallplus.de/media/landkreise/landkreis316/icons/30x30-papier-tonne.png"
                    }
                }
            },
            {
                "id": "202966",
                "date": "2025-09-24",
                "time": null,
                "location": null,
                "note": null,
                "wasteType": {
                    "id": "31",
                    "name": "Restmüll",
                    "color": "#637e8c",
                    "internals": {
                        "pdfLegend": null,
                        "iconLow": "https://app.abfallplus.de/media/landkreise/landkreis316/icons/30x30-graue-tonne.png"
                    }
                }
            },
            {
                "id": "202935",
                "date": "2025-10-01",
                "time": null,
                "location": null,
                "note": null,
                "wasteType": {
                    "id": "28",
                    "name": "Bioabfall",
                    "color": "#cf9a13",
                    "internals": {
                        "pdfLegend": null,
                        "iconLow": "https://app.abfallplus.de/media/landkreise/landkreis316/icons/30x30-braune-tonne.png"
                    }
                }
            },
            {
                "id": "202967",
                "date": "2025-10-08",
                "time": null,
                "location": null,
                "note": null,
                "wasteType": {
                    "id": "31",
                    "name": "Restmüll",
                    "color": "#637e8c",
                    "internals": {
                        "pdfLegend": null,
                        "iconLow": "https://app.abfallplus.de/media/landkreise/landkreis316/icons/30x30-graue-tonne.png"
                    }
                }
            },
            {
                "id": "202936",
                "date": "2025-10-15",
                "time": null,
                "location": null,
                "note": null,
                "wasteType": {
                    "id": "28",
                    "name": "Bioabfall",
                    "color": "#cf9a13",
                    "internals": {
                        "pdfLegend": null,
                        "iconLow": "https://app.abfallplus.de/media/landkreise/landkreis316/icons/30x30-braune-tonne.png"
                    }
                }
            },
            {
                "id": "203647",
                "date": "2025-10-17",
                "time": null,
                "location": null,
                "note": null,
                "wasteType": {
                    "id": "19",
                    "name": "Papiertonne",
                    "color": "#2aabe2",
                    "internals": {
                        "pdfLegend": null,
                        "iconLow": "https://app.abfallplus.de/media/landkreise/landkreis316/icons/30x30-papier-tonne.png"
                    }
                }
            },
            {
                "id": "202968",
                "date": "2025-10-22",
                "time": null,
                "location": null,
                "note": null,
                "wasteType": {
                    "id": "31",
                    "name": "Restmüll",
                    "color": "#637e8c",
                    "internals": {
                        "pdfLegend": null,
                        "iconLow": "https://app.abfallplus.de/media/landkreise/landkreis316/icons/30x30-graue-tonne.png"
                    }
                }
            },
            {
                "id": "202937",
                "date": "2025-10-29",
                "time": null,
                "location": null,
                "note": null,
                "wasteType": {
                    "id": "28",
                    "name": "Bioabfall",
                    "color": "#cf9a13",
                    "internals": {
                        "pdfLegend": null,
                        "iconLow": "https://app.abfallplus.de/media/landkreise/landkreis316/icons/30x30-braune-tonne.png"
                    }
                }
            },
            {
                "id": "202969",
                "date": "2025-11-05",
                "time": null,
                "location": null,
                "note": null,
                "wasteType": {
                    "id": "31",
                    "name": "Restmüll",
                    "color": "#637e8c",
                    "internals": {
                        "pdfLegend": null,
                        "iconLow": "https://app.abfallplus.de/media/landkreise/landkreis316/icons/30x30-graue-tonne.png"
                    }
                }
            },
            {
                "id": "202938",
                "date": "2025-11-12",
                "time": null,
                "location": null,
                "note": null,
                "wasteType": {
                    "id": "28",
                    "name": "Bioabfall",
                    "color": "#cf9a13",
                    "internals": {
                        "pdfLegend": null,
                        "iconLow": "https://app.abfallplus.de/media/landkreise/landkreis316/icons/30x30-braune-tonne.png"
                    }
                }
            },
            {
                "id": "203648",
                "date": "2025-11-14",
                "time": null,
                "location": null,
                "note": null,
                "wasteType": {
                    "id": "19",
                    "name": "Papiertonne",
                    "color": "#2aabe2",
                    "internals": {
                        "pdfLegend": null,
                        "iconLow": "https://app.abfallplus.de/media/landkreise/landkreis316/icons/30x30-papier-tonne.png"
                    }
                }
            },
            {
                "id": "202970",
                "date": "2025-11-19",
                "time": null,
                "location": null,
                "note": null,
                "wasteType": {
                    "id": "31",
                    "name": "Restmüll",
                    "color": "#637e8c",
                    "internals": {
                        "pdfLegend": null,
                        "iconLow": "https://app.abfallplus.de/media/landkreise/landkreis316/icons/30x30-graue-tonne.png"
                    }
                }
            },
            {
                "id": "202939",
                "date": "2025-11-26",
                "time": null,
                "location": null,
                "note": null,
                "wasteType": {
                    "id": "28",
                    "name": "Bioabfall",
                    "color": "#cf9a13",
                    "internals": {
                        "pdfLegend": null,
                        "iconLow": "https://app.abfallplus.de/media/landkreise/landkreis316/icons/30x30-braune-tonne.png"
                    }
                }
            },
            {
                "id": "202971",
                "date": "2025-12-03",
                "time": null,
                "location": null,
                "note": null,
                "wasteType": {
                    "id": "31",
                    "name": "Restmüll",
                    "color": "#637e8c",
                    "internals": {
                        "pdfLegend": null,
                        "iconLow": "https://app.abfallplus.de/media/landkreise/landkreis316/icons/30x30-graue-tonne.png"
                    }
                }
            },
            {
                "id": "202940",
                "date": "2025-12-10",
                "time": null,
                "location": null,
                "note": null,
                "wasteType": {
                    "id": "28",
                    "name": "Bioabfall",
                    "color": "#cf9a13",
                    "internals": {
                        "pdfLegend": null,
                        "iconLow": "https://app.abfallplus.de/media/landkreise/landkreis316/icons/30x30-braune-tonne.png"
                    }
                }
            },
            {
                "id": "203649",
                "date": "2025-12-12",
                "time": null,
                "location": null,
                "note": null,
                "wasteType": {
                    "id": "19",
                    "name": "Papiertonne",
                    "color": "#2aabe2",
                    "internals": {
                        "pdfLegend": null,
                        "iconLow": "https://app.abfallplus.de/media/landkreise/landkreis316/icons/30x30-papier-tonne.png"
                    }
                }
            },
            {
                "id": "202972",
                "date": "2025-12-17",
                "time": null,
                "location": null,
                "note": null,
                "wasteType": {
                    "id": "31",
                    "name": "Restmüll",
                    "color": "#637e8c",
                    "internals": {
                        "pdfLegend": null,
                        "iconLow": "https://app.abfallplus.de/media/landkreise/landkreis316/icons/30x30-graue-tonne.png"
                    }
                }
            },
            {
                "id": "202941",
                "date": "2025-12-23",
                "time": null,
                "location": null,
                "note": null,
                "wasteType": {
                    "id": "28",
                    "name": "Bioabfall",
                    "color": "#cf9a13",
                    "internals": {
                        "pdfLegend": null,
                        "iconLow": "https://app.abfallplus.de/media/landkreise/landkreis316/icons/30x30-braune-tonne.png"
                    }
                }
            },
            {
                "id": "202973",
                "date": "2025-12-31",
                "time": null,
                "location": null,
                "note": null,
                "wasteType": {
                    "id": "31",
                    "name": "Restmüll",
                    "color": "#637e8c",
                    "internals": {
                        "pdfLegend": null,
                        "iconLow": "https://app.abfallplus.de/media/landkreise/landkreis316/icons/30x30-graue-tonne.png"
                    }
                }
            }
        ]
    }
}

CSV File:
It seems that the url is almost the same for the graphql implementation.

CSV download request

Image

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions