# TAF (terminal forecasts) NOAA Aviation Weather METAR TAF

**Use case:** 

Extract NOAA Aviation Weather METAR TAF data filtered by TAF (terminal forecasts). Export structured results ready for analysis, lead generation, or research.

## Input

```json
{
  "ids": [
    "KJFK",
    "KLAX",
    "KORD",
    "EGLL",
    "KSFO"
  ],
  "reportType": "TAF",
  "hours": 1,
  "maxItems": 10
}
```

## Output

```json
{
  "stationId": {
    "label": "🛫 Station",
    "format": "text"
  },
  "stationName": {
    "label": "📌 Name",
    "format": "text"
  },
  "flightCategory": {
    "label": "🚦 Flight Cat",
    "format": "text"
  },
  "temperatureC": {
    "label": "🌡 Temp C",
    "format": "number"
  },
  "windSpeedKt": {
    "label": "💨 Wind Kt",
    "format": "number"
  },
  "cloudLayers": {
    "label": "☁ Clouds",
    "format": "text"
  },
  "rawObservation": {
    "label": "📡 Raw METAR",
    "format": "text"
  },
  "rawForecast": {
    "label": "📋 Raw TAF",
    "format": "text"
  },
  "observedAt": {
    "label": "🕒 Observed",
    "format": "date"
  },
  "issuedAt": {
    "label": "🕒 Issued",
    "format": "date"
  },
  "scrapedAt": {
    "label": "🕒 Scraped",
    "format": "date"
  },
  "error": {
    "label": "❌ Error",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [NOAA Aviation Weather METAR TAF Scraper](https://apify.com/parseforge/aviationweather-metar-taf-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/parseforge/aviationweather-metar-taf-scraper) to learn more, explore other use cases, and run it yourself.