search_business_directory
biggerpockets.comSearches the BiggerPockets business directory associated with https://biggerpocket.com and returns auto-paginated professional listings filtered by business type and location. Each listing includes all available business profile fields shown in directory results.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_business_directory?
Searches the BiggerPockets business directory associated with https://biggerpocket.com and returns auto-paginated professional listings filtered by business type and location. Each listing includes all available business profile fields shown in directory results. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass business_type, location, pages, start_page and get the result back without maintaining a scraper.
Response
{
"filters": {},
"results": [
{}
],
"end_page": 0,
"page_size": 0,
"start_page": 0,
"total_pages": 0,
"pages_fetched": 0,
"returned_count": 0,
"total_available": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/d320d736-a8b6-456f-8895-1757136672d0/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "d320d736-a8b6-456f-8895-1757136672d0",
"variables": {
"business_type": "",
"location": "",
"pages": 2,
"start_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="d320d736-a8b6-456f-8895-1757136672d0") — the "search_business_directory" function, which searches the BiggerPockets business directory associated with https://biggerpocket.com and returns auto-paginated professional listings filtered by business type and location. Each listing includes all available business profile fields shown in directory results.. It takes business_type (str), location (str), pages (int), start_page (int). Return the result as structured JSON.