# Nextdoor Business Scraper (`scraped/nextdoor-business-scraper`) Actor

Scrape businesses from Nextdoor

- **URL**: https://apify.com/scraped/nextdoor-business-scraper.md
- **Developed by:** [scraped](https://apify.com/scraped) (community)
- **Categories:** Automation, Lead generation, Social media
- **Stats:** 129 total users, 3 monthly users, 99.6% runs succeeded, 5 bookmarks
- **User rating**: No ratings yet

## Pricing

$10.00 / 1,000 results

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

Learn more: https://docs.apify.com/actors/running/actors-in-store.md#pay-per-event

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).

# README

## OpenDoor Review Scraper

This scraper business information from [Nextdoor](https://nextdoor.com/)

### Sample Output

Here's an example of the data the scraper will output:

```json
    {
    "Title": "Purkeys plumbing * 9",
    "Address": "38068 Ruth Hill Rd, Squaw Valley",
    "URL": "https://nextdoor.com/pages/purkeys-plumbing-squaw-valley-ca/?init_source=search",
    "Image URL": "https://us1-photo.nextdoor.com/pages_avatar_photos/c0/a1/c0a1b4c43185e77f663298d3dc8c353e.jpg",
    "Neighborhood Favorite": "Neighborhood Fave",
    "Business Slug": "purkeys-plumbing-squaw-valley-ca",
    "Email": "purkeybrian@aol.com",
    "Website": "http://purkeysplumbingandwaterpump.com/",
    "Phone": "559-776-5865",
    "Description": "Need a Plumber in Squaw Valley / Fresno area : Call Purkeys Plumbing  For a Plumber in Fresno / Squaw Valley ca area call Purkeys Plumbing we provide full service plumbing maintenance and repairs and clogged drain cleaning, 24 hours a day, including toilet repairs. Purkeys Plumbing in Squaw Valley / Fresno offer residential and commercial plumbing services that customers depend on for all of their local plumbing needs. Trusted and recommended since 1999, Purkeys Plumbing is the premier provider of plumbing and drain cleaning services in Fresno / Squaw Valley area. Homeowners and businesses depend on Purkeys plumbing 24 hours a day, 7 days a week. Our specialty is emergency services. We stand by our estimates and guarantee our work. Your call will be answered by a trained customer service representative who will handle your request quickly and schedule service at your convenience. We are a local business and we look forward to meeting you. Thank you and god bless.\n\nLicenses:1025717",
    "Connections Count": 9
  },

```

### Support

Please email scraperhelp@gmail.com if you need any additional support.

# Actor input Schema

## `city` (type: `string`):

City name for the search.

## `state` (type: `string`):

State abbreviation (e.g. CA).

## `query` (type: `string`):

Search term, e.g. plumber.

## Actor input object example

```json
{
  "city": "badger",
  "state": "ca",
  "query": "plumber"
}
```

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "city": "badger",
    "state": "ca",
    "query": "plumber"
};

// Run the Actor and wait for it to finish
const run = await client.actor("scraped/nextdoor-business-scraper").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {
    "city": "badger",
    "state": "ca",
    "query": "plumber",
}

# Run the Actor and wait for it to finish
run = client.actor("scraped/nextdoor-business-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
for item in client.dataset(run.default_dataset_id).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "city": "badger",
  "state": "ca",
  "query": "plumber"
}' |
apify call scraped/nextdoor-business-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,scraped/nextdoor-business-scraper"
        }
    }
}

```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/KK0Ga15V7KZQx8ZpB/builds/Ae1dy9jVuJHIJPrUA/openapi.json
