# Wild and Scenic River Section 7 Screen Example

**Use case:** 

Worked WSR proximity screen for 6 sites: nearest designated river, Wild or Scenic class, administering agency, distance and Section 7 free-flow flag.

## Input

```json
{
  "assets": [
    {
      "lat": 42.65,
      "lon": -123.58,
      "label": "Rogue River OR",
      "radius": 5000
    },
    {
      "lat": 45.38,
      "lon": -115.55,
      "label": "Salmon River ID",
      "radius": 5000
    },
    {
      "lat": 36.6,
      "lon": -105.7,
      "label": "Rio Grande NM",
      "radius": 5000
    },
    {
      "lat": 41.6,
      "lon": -75.06,
      "label": "Upper Delaware River NY/PA",
      "radius": 5000
    },
    {
      "lat": 34.82,
      "lon": -83.3,
      "label": "Chattooga River GA/SC",
      "radius": 5000
    },
    {
      "lat": 39.7392,
      "lon": -104.9903,
      "label": "Denver CO (control)",
      "radius": 5000
    }
  ],
  "radiusMeters": 5000,
  "maxResults": 500,
  "skipDriftChecks": false
}
```

## Output

```json
{
  "asset_label": {
    "label": "Asset label",
    "format": "string"
  },
  "wsr_section7_flag": {
    "label": "WSR Section 7 flag",
    "format": "boolean"
  },
  "nearest_river_name": {
    "label": "Nearest river name",
    "format": "string"
  },
  "nearest_segment_classification": {
    "label": "Nearest segment classification",
    "format": "string"
  },
  "segment_detail_status": {
    "label": "Segment detail status",
    "format": "string"
  },
  "river_category": {
    "label": "River category",
    "format": "string"
  },
  "administering_agencies": {
    "label": "Administering agencies",
    "format": "string"
  },
  "nearest_distance_miles": {
    "label": "Nearest distance (mi)",
    "format": "number"
  },
  "rivers_within_radius": {
    "label": "Rivers within radius",
    "format": "integer"
  },
  "classifications_within_radius": {
    "label": "Classifications within radius",
    "format": "array"
  },
  "river_orvs_within_radius": {
    "label": "River ORVs within radius",
    "format": "string"
  },
  "designating_public_law_number": {
    "label": "Designating public law number",
    "format": "string"
  },
  "nearest_river_state": {
    "label": "Nearest river state",
    "format": "string"
  },
  "sources_failed": {
    "label": "Sources failed",
    "format": "integer"
  },
  "partial_result": {
    "label": "Partial result",
    "format": "boolean"
  },
  "error": {
    "label": "Error",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [USFS Wild & Scenic River Proximity Screener - WSR Act Section 7](https://apify.com/malonestar/wild-scenic-river-proximity-screener.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/malonestar/wild-scenic-river-proximity-screener.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
This Task's input is already configured above — use it as-is rather than inventing a new one.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/malonestar/wild-scenic-river-proximity-screener.md

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).
