# Delays at the ten busiest US airports

**Use case:** 

Filtered to ten hubs, so the output stays short enough to put on a dashboard. An airport with no delay program simply does not appear, which is how the FAA feed itself works.

## Input

```json
{
  "airports": [
    "ATL",
    "DFW",
    "DEN",
    "ORD",
    "LAX",
    "JFK",
    "LAS",
    "MCO",
    "MIA",
    "CLT"
  ],
  "delayTypes": [],
  "maxRetries": 4
}
```

## Output

```json
{
  "rowType": {
    "label": "Row",
    "format": "string"
  },
  "delayType": {
    "label": "Delay type",
    "format": "string"
  },
  "scope": {
    "label": "Scope",
    "format": "string"
  },
  "airport": {
    "label": "Airport",
    "format": "string"
  },
  "controlElement": {
    "label": "Airspace",
    "format": "string"
  },
  "programName": {
    "label": "Program",
    "format": "string"
  },
  "reason": {
    "label": "Reason",
    "format": "string"
  },
  "note": {
    "label": "Note",
    "format": "string"
  },
  "endTime": {
    "label": "Ends",
    "format": "string"
  },
  "closureStart": {
    "label": "Closed from",
    "format": "string"
  },
  "reopen": {
    "label": "Reopens",
    "format": "string"
  },
  "startTime": {
    "label": "Starts",
    "format": "string"
  },
  "stopTime": {
    "label": "Stops",
    "format": "string"
  },
  "afpStartTime": {
    "label": "AFP start",
    "format": "string"
  },
  "afpEndTime": {
    "label": "AFP end",
    "format": "string"
  },
  "averageDelay": {
    "label": "Avg delay",
    "format": "string"
  },
  "averageDelayMinutes": {
    "label": "Avg (min)",
    "format": "number"
  },
  "maximumDelay": {
    "label": "Max delay",
    "format": "string"
  },
  "maximumDelayMinutes": {
    "label": "Max (min)",
    "format": "number"
  },
  "arrivalMin": {
    "label": "Arr min",
    "format": "string"
  },
  "arrivalMax": {
    "label": "Arr max",
    "format": "string"
  },
  "arrivalTrend": {
    "label": "Arr trend",
    "format": "string"
  },
  "departureMin": {
    "label": "Dep min",
    "format": "string"
  },
  "departureMax": {
    "label": "Dep max",
    "format": "string"
  },
  "departureTrend": {
    "label": "Dep trend",
    "format": "string"
  },
  "altitudeFloor": {
    "label": "Floor",
    "format": "string"
  },
  "altitudeCeiling": {
    "label": "Ceiling",
    "format": "string"
  },
  "delayTypeName": {
    "label": "FAA heading",
    "format": "string"
  },
  "updateTime": {
    "label": "FAA updated",
    "format": "string"
  },
  "checkedAt": {
    "label": "Checked",
    "format": "string"
  },
  "source": {
    "label": "Source",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [FAA Airport Status - Airport Delays, Closures, Ground Stops](https://apify.com/neverempty/us-airport-delays.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/neverempty/us-airport-delays.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/neverempty/us-airport-delays.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
