# Scpafl — 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 Seminole County, Florida property records by address to access parcel information, assessments, and appraiser data. Find detailed property details and valuation records for any site in the county quickly and easily.

**Category:** Government & Public Data | **Website:** [scpafl.org/](https://scpafl.org/) | **Docs:** [parse.bot/marketplace/74e04ae2-47e0-476d-ab3e-3d761952a44f/scpafl-org-api](https://parse.bot/marketplace/74e04ae2-47e0-476d-ab3e-3d761952a44f/scpafl-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-scpafl-org-api-74e04ae2/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### search_by_address

Search parcel records by street address. Returns matching parcels with property details including parcel ID, full site address, city, zip code, current just value (market value), assessed value, year built, and total living area. The address is matched as a prefix against the county's parcel address records (case-insensitive). City suffixes like ', Sanford' are automatically stripped before searching. Results are capped at 50 records per call.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `address` | string | Yes | Street address to search for (e.g. '100 E 1st St' or '100 E 1st St, Sanford'). Matched as a prefix against parcel site addresses. Common street type words (Street, Avenue, etc.) are normalized to abbreviations (ST, AVE, etc.). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-scpafl-org-api-74e04ae2/search_by_address \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"address":"<string>"}'
```
