# Ava Fidlar — 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 recorded property deeds in Rockingham County, New Hampshire by book and page number to find historical deed information and property records. Quickly locate specific deeds without visiting the Registry of Deeds office in person.

**Category:** Government & Public Data | **Website:** [ava.fidlar.com/NHRockingham/AvaWeb/#/search](https://ava.fidlar.com/NHRockingham/AvaWeb/#/search) | **Docs:** [parse.bot/marketplace/607d9ba2-28d4-4401-b28b-89d7a47fb563/ava-fidlar-com-api](https://parse.bot/marketplace/607d9ba2-28d4-4401-b28b-89d7a47fb563/ava-fidlar-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-ava-fidlar-com-api-607d9ba2/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### search_deeds_by_book_page

Search for recorded deeds by book and page number in the Rockingham County Registry of Deeds. Returns matching deed records including document type, parties, recording dates, legal descriptions, and notes. Each call makes two upstream requests (token + search) and solves an invisible reCAPTCHA v3 challenge.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `book` | string | Yes | Book number to search (numeric string, e.g. '5000'). |
| `page` | string | Yes | Page number within the book (numeric string, e.g. '100'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-ava-fidlar-com-api-607d9ba2/search_deeds_by_book_page \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"book":"<string>","page":"<string>"}'
```
