# Check drone airspace and LAANC ceilings near Denver Intl

**Use case:** 

Batch-check points against 7 FAA layers — LAANC grid ceilings, prohibited areas, TFRs, special-use airspace and stadium restrictions — one verdict per point.

## Input

```json
{
  "points": [
    {
      "lat": 39.86,
      "lon": -104.67,
      "label": "Near Denver Intl (KDEN) - LAANC 0 grid"
    },
    {
      "lat": 38.9072,
      "lon": -101.05,
      "label": "Rural western Kansas"
    }
  ],
  "layers": [
    "laanc_grid",
    "prohibited_areas",
    "national_defense_tfr",
    "special_use_airspace",
    "part_time_nsufr",
    "stadiums",
    "recreational_flyer_sites"
  ],
  "maxPoints": 500
}
```

## Output

```json
{
  "label": {
    "label": "Label",
    "format": "string"
  },
  "lat": {
    "label": "Latitude",
    "format": "number"
  },
  "lon": {
    "label": "Longitude",
    "format": "number"
  },
  "flight_category": {
    "label": "Flight category verdict",
    "format": "string"
  },
  "max_laanc_ceiling_ft": {
    "label": "LAANC ceiling (ft AGL)",
    "format": "number"
  },
  "nearest_airport": {
    "label": "Controlling airport",
    "format": "string"
  },
  "airspace_class": {
    "label": "Airspace class",
    "format": "string"
  },
  "restriction_count": {
    "label": "Restriction count",
    "format": "integer"
  },
  "checked_at": {
    "label": "Checked at",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [FAA Drone Airspace Checker - Batch LAANC & No-Fly Verdicts](https://apify.com/malonestar/faa-drone-airspace-checker) with a specific input configuration. Visit the [Actor detail page](https://apify.com/malonestar/faa-drone-airspace-checker) to learn more, explore other use cases, and run it yourself.