# Scrape Public Airports in Florida

**Use case:** 

Find public-use Florida airports from FAA data with Facility, FAA ID, Type, City, ST, Use, Longest RWY (ft) and Phone. No login required.

## Input

```json
{
  "outputMode": "facilities",
  "states": [
    "FL"
  ],
  "facilityTypes": [
    "AIRPORT"
  ],
  "publicUseOnly": true,
  "activeOnly": true,
  "hasFuelOnly": false,
  "far139Only": false,
  "hasPhoneOnly": false,
  "sortBy": "leadScore",
  "maxResults": 1000,
  "includeRemarks": false,
  "includeRawFields": false,
  "monitorMode": false,
  "monitorKey": "default",
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "facilityName": {
    "label": "Facility",
    "format": "text"
  },
  "faaIdentifier": {
    "label": "FAA ID",
    "format": "text"
  },
  "facilityType": {
    "label": "Type",
    "format": "text"
  },
  "city": {
    "label": "City",
    "format": "text"
  },
  "state": {
    "label": "ST",
    "format": "text"
  },
  "facilityUse": {
    "label": "Use",
    "format": "text"
  },
  "ownershipType": {
    "label": "Ownership",
    "format": "text"
  },
  "longestRunwayFt": {
    "label": "Longest RWY (ft)",
    "format": "number"
  },
  "hasFuel": {
    "label": "Fuel",
    "format": "boolean"
  },
  "far139Certified": {
    "label": "FAR 139",
    "format": "boolean"
  },
  "phone": {
    "label": "Phone",
    "format": "text"
  },
  "leadScore": {
    "label": "Lead score",
    "format": "number"
  },
  "detailUrl": {
    "label": "Detail",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [US Airport & Aviation Facility Leads Scraper (FAA)](https://apify.com/scrapesage/us-aviation-facility-leads) with a specific input configuration. Visit the [Actor detail page](https://apify.com/scrapesage/us-aviation-facility-leads) to learn more, explore other use cases, and run it yourself.