# US airport closures right now

**Use case:** 

Only the airports the FAA currently lists as closed, with the reason and the time it is expected to reopen. This is a live operational feed, so an empty answer means no airport is closed at that moment - which is information, not a failure.

## Input

```json
{
  "airports": [],
  "delayTypes": [
    "AIRPORT_CLOSURE"
  ],
  "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`).
