# Property Appraiser — 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.

> Search for properties in Osceola County, Florida by street address to instantly access detailed parcel information such as property valuations, construction year, and living area. Get comprehensive property data to research real estate values, verify property details, or make informed decisions about properties in the area.

**Category:** Real Estate | **Website:** [www.property-appraiser.org/](https://www.property-appraiser.org/) | **Docs:** [parse.bot/marketplace/74350a05-3687-439c-88ff-474cb9cb3edb/property-appraiser-org-api](https://parse.bot/marketplace/74350a05-3687-439c-88ff-474cb9cb3edb/property-appraiser-org-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-property-appraiser-org-api-74350a05/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### search_properties

Search Osceola County property records by street address. Returns matching parcels with parcel ID, full site address, city, zip, current just value (market value), assessed value, year built, and total living area. Each matching address triggers one detail lookup, so a broad search (e.g. a common street name) may return many results with proportional latency.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `address` | string | Yes | Street address to search (e.g. '2606 Grey Hawk Dr', '5401 Osceola Ave'). Partial addresses are supported. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-property-appraiser-org-api-74350a05/search_properties \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"address":"<string>"}'
```
