# Webquery Washoe Nv Etstack — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Find out which schools your address is zoned for and check your eligibility for bus transportation in Washoe County, Nevada. Simply enter an address to instantly discover all eligible schools and their transportation options available to you.

**Category:** Education | **Website:** [webquery-washoe-nv.etstack.io/](https://webquery-washoe-nv.etstack.io/) | **Docs:** [parse.bot/marketplace/f3a65ced-0001-4215-9697-ee0e1387d7e5/webquery-washoe-nv-etstack-io-api](https://parse.bot/marketplace/f3a65ced-0001-4215-9697-ee0e1387d7e5/webquery-washoe-nv-etstack-io-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-webquery-washoe-nv-etstack-io-api-f3a65ced/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### find_eligible_schools

Given an address in Washoe County, returns the zoned elementary, middle, and high schools along with grades served and bus transportation eligibility. When coordinates are provided, geocoding is bypassed and the point is used directly; otherwise the backend attempts to geocode the address string. Results are auto-iterated as a flat list of assigned schools.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `address` | string | Yes | Street address in Washoe County, NV (e.g. '1155 E 9th St, Reno, NV 89512, USA'). |
| `grade` | string | No | Grade code to filter results (e.g. 'K', '01'-'13', 'EC', 'AD', 'TRPA', 'TRPD'). Omit for all grades. |
| `latitude` | string | No | Decimal latitude of the address (e.g. '39.5390291'). When provided with longitude, bypasses server-side geocoding. |
| `longitude` | string | No | Decimal longitude of the address (e.g. '-119.7992102'). When provided with latitude, bypasses server-side geocoding. |
| `program` | string | No | Program code filter. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-webquery-washoe-nv-etstack-io-api-f3a65ced/find_eligible_schools \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"address":"<string>","grade":"<string>","latitude":"<string>","longitude":"<string>","program":"<string>"}'
```
