# Critical Habitat Screener — ESA Section 7 Multi-Site Check

**Use case:** 

Batch-screen project sites against live USFWS critical habitat. Per site: species, Final/Proposed status, Federal Register citation, and ESA Section 7 flag.

## Input

```json
{
  "assets": [
    {
      "lat": 30.2649,
      "lon": -97.7714,
      "label": "Austin TX - Zilker tract"
    },
    {
      "lat": 33.9,
      "lon": -117.4,
      "label": "Riverside County CA - solar site"
    },
    {
      "lat": 27.8006,
      "lon": -97.3964,
      "label": "Corpus Christi TX - coastal parcel"
    },
    {
      "lat": 44.0582,
      "lon": -121.3153,
      "label": "Bend OR - project site"
    },
    {
      "lat": 40.7128,
      "lon": -74.006,
      "label": "Manhattan NY - urban control"
    }
  ],
  "radiusMiles": 1,
  "includeProposed": true,
  "maxAssets": 500
}
```

## Output

```json
{
  "asset_label": {
    "label": "Asset label",
    "format": "string"
  },
  "in_critical_habitat": {
    "label": "In/near critical habitat",
    "format": "boolean"
  },
  "species_comname": {
    "label": "Species (common name)",
    "format": "string"
  },
  "habitat_status": {
    "label": "Habitat status",
    "format": "string"
  },
  "listing_status": {
    "label": "ESA listing status",
    "format": "string"
  },
  "esa_consultation_flag": {
    "label": "ESA Section 7 consultation flag",
    "format": "boolean"
  },
  "fedreg": {
    "label": "Federal Register citation",
    "format": "string"
  },
  "pubdate": {
    "label": "Publication date",
    "format": "string"
  },
  "checked_at": {
    "label": "Checked at",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [FWS Critical Habitat Screener — ESA Section 7 Site Check](https://apify.com/malonestar/fws-critical-habitat-screener) with a specific input configuration. Visit the [Actor detail page](https://apify.com/malonestar/fws-critical-habitat-screener) to learn more, explore other use cases, and run it yourself.