# Manateepao — 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 Manatee County and retrieve detailed information including ownership records, sales history, and comparable sales data. Access parcel-level details such as land use, building area, living units, and transaction history across all property types.

**Category:** Government & Public Data | **Website:** [manateepao.gov/](https://manateepao.gov/) | **Docs:** [parse.bot/marketplace/a24838d9-29e1-4ead-a7f2-cc68ff5ad9a2/manateepao-gov-api](https://parse.bot/marketplace/a24838d9-29e1-4ead-a7f2-cc68ff5ad9a2/manateepao-gov-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-manateepao-gov-api-a24838d9/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_property_detail

Get detailed information for a specific parcel by Parcel ID. Returns ownership, mailing address, situs address, land use, land size, building area, living units, neighborhood, subdivision, and more.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `parcel_id` | string | Yes | Parcel ID to retrieve details for (e.g. 1102040509) |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-manateepao-gov-api-a24838d9/get_property_detail \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"parcel_id":"<string>"}'
```

### get_property_sales

Get sales history for a specific parcel. Returns all recorded sales transactions including date, price, book/page, instrument type, and grantee.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `parcel_id` | string | Yes | Parcel ID to retrieve sales history for (e.g. 1102040509) |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-manateepao-gov-api-a24838d9/get_property_sales \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"parcel_id":"<string>"}'
```

### search_multifamily_sales_comparables

Search for multi-family sales comparables (DOR 03 and 08) with a minimum number of units sold since a given date. Returns property details and full sales history for each match.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Maximum number of properties to return with full details and sales history |
| `sale_date_start` | string | No | Minimum sale date in MM/DD/YYYY format. Omitting defaults to one year ago from today. |
| `units_low` | string | No | Minimum number of living units |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-manateepao-gov-api-a24838d9/search_multifamily_sales_comparables \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>","sale_date_start":"<string>","units_low":"<string>"}'
```

### search_properties

Search for properties using multiple filters. Returns a list of matching parcels with basic info including parcel ID, owner names, address, and postal city. At least one filter should be provided. Results are capped at 1000 by the upstream system.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `dor_code` | string | No | DOR Land Use code. Comma-separated for multiple (e.g. '01' for single family, '03' for 10+ units, '08' for multifamily less than 10 units) |
| `own_last` | string | No | Owner's last name |
| `parcel_id` | string | No | Parcel ID (e.g. 1102040509) |
| `sale_date_start` | string | No | Minimum sale date in MM/DD/YYYY format |
| `sale_price_high` | string | No | Maximum sale price |
| `sale_price_low` | string | No | Minimum sale price |
| `situs_address` | string | No | Situs (property) address or partial address to search |
| `units_low` | string | No | Minimum number of living units |
| `zip_code` | string | No | Property zip code |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-manateepao-gov-api-a24838d9/search_properties \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"dor_code":"<string>","own_last":"<string>","parcel_id":"<string>","sale_date_start":"<string>","sale_price_high":"<string>","sale_price_low":"<string>","situs_address":"<string>","units_low":"<string>","zip_code":"<string>"}'
```
