# Sensor.Community Air Quality Germany Scraper

**Use case:** 

Scrape live SDS011 particulate matter air quality readings from Sensor.Community sensors in Germany with PM values, location, and timestamp. JSON or CSV.

## Input

```json
{
  "mode": "live",
  "maxItems": 5,
  "country": "DE",
  "sensorType": "SDS011"
}
```

## Output

```json
{
  "sensorId": {
    "label": "🛰 Sensor ID",
    "format": "number"
  },
  "sensorType": {
    "label": "🔧 Sensor Type",
    "format": "text"
  },
  "country": {
    "label": "🌍 Country",
    "format": "text"
  },
  "latitude": {
    "label": "📍 Lat",
    "format": "number"
  },
  "longitude": {
    "label": "📍 Lon",
    "format": "number"
  },
  "timestamp": {
    "label": "🕒 Measured",
    "format": "text"
  },
  "P1": {
    "label": "🌫 PM10",
    "format": "number"
  },
  "P2": {
    "label": "🌫 PM2.5",
    "format": "number"
  },
  "temperature": {
    "label": "🌡 Temp",
    "format": "number"
  },
  "humidity": {
    "label": "💧 Humidity",
    "format": "number"
  },
  "pressure": {
    "label": "🧭 Pressure",
    "format": "number"
  },
  "scrapedAt": {
    "label": "🕒 Scraped",
    "format": "date"
  },
  "error": {
    "label": "❌ Error",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Sensor.Community Air Quality Sensor Scraper](https://apify.com/parseforge/sensor-community-air-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/parseforge/sensor-community-air-scraper) to learn more, explore other use cases, and run it yourself.