search_recorded_deeds_by_book_page
ava.fidlar.comSearches the Rockingham County, New Hampshire Registry of Deeds on https://ava.fidlar.com by book and page number. Returns matching deed records with all available record-level document, party, recording, legal, note, and related details.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_recorded_deeds_by_book_page?
Searches the Rockingham County, New Hampshire Registry of Deeds on https://ava.fidlar.com by book and page number. Returns matching deed records with all available record-level document, party, recording, legal, note, and related details. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass book, page and get the result back without maintaining a scraper.
Response
{
"book": "<string>",
"page": "<string>",
"records": [
{}
],
"match_count": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/271021d2-fc77-4077-abf4-ef54870a30c1/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "271021d2-fc77-4077-abf4-ef54870a30c1",
"variables": {
"book": "1",
"page": "1"
}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="271021d2-fc77-4077-abf4-ef54870a30c1") — the "search_recorded_deeds_by_book_page" function, which searches the Rockingham County, New Hampshire Registry of Deeds on https://ava.fidlar.com by book and page number. Returns matching deed records with all available record-level document, party, recording, legal, note, and related details.. It takes book (str), page (str). Return the result as structured JSON.