# Sarasotaclerk — 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 and retrieve official land and court records from Sarasota County including foreclosures and Lis Pendens documents by name, date, or document type. Access detailed record information with full pagination support to find the specific legal documents you need.

**Category:** Government & Public Data | **Website:** [sarasotaclerk.com/](https://sarasotaclerk.com/) | **Docs:** [parse.bot/marketplace/72724970-6052-4582-893b-abe7fbad305d/sarasotaclerk-com-api](https://parse.bot/marketplace/72724970-6052-4582-893b-abe7fbad305d/sarasotaclerk-com-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-sarasotaclerk-com-api-72724970/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_document_types

Retrieve the list of all available document types and their corresponding numeric indices for use with the doc_types parameter in search_official_records.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-sarasotaclerk-com-api-72724970/get_document_types \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_official_record_detail

Retrieve full details for a specific official record by its unique instrument number. Returns the matching record with all available fields.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `instrument_number` | string | Yes | The unique instrument number identifying the record (e.g. '2026021479'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-sarasotaclerk-com-api-72724970/get_official_record_detail \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"instrument_number":"<string>"}'
```

### search_official_records

Search Official Records (Land Records) by name, date range, and document types. Returns paginated results with 12 records per page. Narrow your search with specific names and short date ranges to avoid upstream timeouts on broad queries.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `date_from` | string | No | Recording date range start in MM/DD/YYYY format. |
| `date_to` | string | No | Recording date range end in MM/DD/YYYY format. |
| `doc_types` | string | No | Comma-separated list of document type indices. Use get_document_types to retrieve the full list of available indices and labels. |
| `first_name` | string | No | First name of party. |
| `last_name` | string | No | Last name or business name of party. |
| `max_pages` | integer | No | Maximum number of result pages to retrieve (12 results per page). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-sarasotaclerk-com-api-72724970/search_official_records \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"date_from":"<string>","date_to":"<string>","doc_types":"<string>","first_name":"<string>","last_name":"<string>","max_pages":"<integer>"}'
```
