# Site Due-Diligence Scorecard — 8-Layer Fatal-Flaw Screen

**Use case:** 

One call scores a portfolio of coordinates across 8 layers — EPA contamination, flood, habitat, seismic, wildfire, grid and IRA bonus — with a fatal-flaw count.

## Input

```json
{
  "assets": [
    {
      "lat": 29.7355,
      "lon": -95.2601,
      "label": "Houston Ship Channel industrial site, TX"
    },
    {
      "lat": 44.29,
      "lon": -105.5,
      "label": "Gillette, WY greenfield (coal-country)"
    },
    {
      "lat": 28.5421,
      "lon": -81.379,
      "label": "Orlando, FL karst/sinkhole zone"
    },
    {
      "lat": 29.95,
      "lon": -90.07,
      "label": "New Orleans, LA leveed flood-protection area"
    },
    {
      "lat": 34.38,
      "lon": -119.44,
      "label": "La Conchita, CA landslide corridor"
    }
  ],
  "radiusMiles": 2,
  "maxAssets": 250
}
```

## Output

```json
{
  "asset_label": {
    "label": "Asset label",
    "format": "string"
  },
  "asset_lat": {
    "label": "Latitude",
    "format": "number"
  },
  "asset_lon": {
    "label": "Longitude",
    "format": "number"
  },
  "radius_miles": {
    "label": "Radius (miles)",
    "format": "number"
  },
  "fatal_flaw_count": {
    "label": "Fatal-flaw count",
    "format": "integer"
  },
  "flags": {
    "label": "Flags",
    "format": "array"
  },
  "opportunities": {
    "label": "Opportunities",
    "format": "array"
  },
  "unavailable_layers": {
    "label": "Unavailable layers",
    "format": "array"
  },
  "site_screen_summary": {
    "label": "Site screen summary",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Site Due-Diligence Bundle — One-Call Fatal-Flaw Scorecard](https://apify.com/malonestar/site-due-diligence-bundle) with a specific input configuration. Visit the [Actor detail page](https://apify.com/malonestar/site-due-diligence-bundle) to learn more, explore other use cases, and run it yourself.