Aktuelle und stündliche Luftqualitätsdaten einschließlich Schadstoffe und Pollen abrufen.
Übersicht
Die Luftqualitäts-API liefert aktuelle Bedingungen und stündliche Vorhersagen für Luftschadstoffe, AQI-Indizes und Pollenbelastung. Die Daten stammen vom Copernicus Atmosphere Monitoring Service (CAMS).
Endpoint
GET /air-quality/{lat},{lon}
Parameter
| Parameter |
Erforderlich |
Standard |
Beschreibung |
lat,lon |
Ja |
— |
Breiten- und Längengrad als Pfadparameter (z.B. 47.37,8.55) |
Beispielanfrage
GET /air-quality/47.37,8.55
Beispielantwort
{
"latitude": 47.37,
"longitude": 8.55,
"timezone": "UTC",
"current": {
"time": 1709132400,
"europeanAqi": 42,
"usAqi": 58,
"pm25": 12.5,
"pm10": 18.3,
"ozone": 68.2,
"nitrogenDioxide": 15.8,
"sulphurDioxide": 3.2,
"carbonMonoxide": 245.6
},
"hourly": {
"data": [
{
"time": 1709132400,
"europeanAqi": 42,
"usAqi": 58,
"pm25": 12.5,
"pm10": 18.3,
"ozone": 68.2,
"nitrogenDioxide": 15.8,
"sulphurDioxide": 3.2,
"carbonMonoxide": 245.6
}
]
}
}
Antwortfelder
current / hourly data
| Feld |
Typ |
Einheit |
Beschreibung |
time |
integer |
— |
Unix-Zeitstempel |
europeanAqi |
integer |
— |
Europäischer Luftqualitätsindex (0–500) |
usAqi |
integer |
— |
US-Luftqualitätsindex (0–500) |
pm25 |
float |
µg/m³ |
Feinstaub (PM2.5) |
pm10 |
float |
µg/m³ |
Grobstaub (PM10) |
ozone |
float |
µg/m³ |
Bodennahes Ozon (O₃) |
nitrogenDioxide |
float |
µg/m³ |
Stickstoffdioxid (NO₂) |
sulphurDioxide |
float |
µg/m³ |
Schwefeldioxid (SO₂) |
carbonMonoxide |
float |
µg/m³ |
Kohlenmonoxid (CO) |
Zusätzliche Felder (nur CAMS Europe)
Diese Felder sind nur für europäische Standorte verfügbar:
| Feld |
Typ |
Einheit |
Beschreibung |
dustAod |
float |
— |
Optische Dicke von Staubaerosolen |
pollenBirch |
float |
µg/m³ |
Birkenpollenkonzentration |
pollenGrass |
float |
µg/m³ |
Gräserpollenkonzentration |
pollenOlive |
float |
µg/m³ |
Olivenpollenkonzentration |
pollenRagweed |
float |
µg/m³ |
Ambrosia-Pollenkonzentration |
pollenAlder |
float |
µg/m³ |
Erlenpollenkonzentration |
pollenMugwort |
float |
µg/m³ |
Beifußpollenkonzentration |
Fehler
| Status |
Beschreibung |
400 |
Ungültige Koordinaten oder Parameter |
403 |
Ungültiger API-Schlüssel |
429 |
Ratenlimit überschritten |
503 |
Luftqualitätsdaten nicht geladen |