# Brownbook Business Profile Scraper

**Use case:** 

Extract specific Brownbook business profiles by URL or ID with website, email, social links, hours, tags, categories, and description.

## Input

```json
{
  "searchQuery": "locksmith",
  "location": "San Jose",
  "countryCode": "US",
  "startUrls": [
    "https://www.brownbook.net/business/39536898/san-jose-advantage-locksmith"
  ],
  "maxResults": 20,
  "maxPages": 3,
  "startBusinessId": 488903,
  "includeDetails": true,
  "maxRequestRetries": 3
}
```

## Output

```json
{
  "name": {
    "label": "Name",
    "format": "text"
  },
  "profileUrl": {
    "label": "Profile URL",
    "format": "link"
  },
  "businessId": {
    "label": "Business ID",
    "format": "text"
  },
  "claimed": {
    "label": "Claimed",
    "format": "boolean"
  },
  "category": {
    "label": "Category",
    "format": "text"
  },
  "naicsTitle": {
    "label": "NAICS title",
    "format": "text"
  },
  "tags": {
    "label": "Tags",
    "format": "array"
  },
  "address": {
    "label": "Address",
    "format": "text"
  },
  "city": {
    "label": "City",
    "format": "text"
  },
  "state": {
    "label": "State",
    "format": "text"
  },
  "zipCode": {
    "label": "ZIP code",
    "format": "text"
  },
  "countryCode": {
    "label": "Country",
    "format": "text"
  },
  "phone": {
    "label": "Phone",
    "format": "text"
  },
  "mobile": {
    "label": "Mobile",
    "format": "text"
  },
  "email": {
    "label": "Email",
    "format": "text"
  },
  "website": {
    "label": "Website",
    "format": "link"
  },
  "facebook": {
    "label": "Facebook",
    "format": "link"
  },
  "instagram": {
    "label": "Instagram",
    "format": "link"
  },
  "linkedin": {
    "label": "LinkedIn",
    "format": "link"
  },
  "twitter": {
    "label": "Twitter/X",
    "format": "link"
  },
  "tiktok": {
    "label": "TikTok",
    "format": "link"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "reviewCount": {
    "label": "Reviews",
    "format": "number"
  },
  "description": {
    "label": "Description",
    "format": "text"
  },
  "hours": {
    "label": "Hours",
    "format": "array"
  },
  "source": {
    "label": "Source",
    "format": "text"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

This example demonstrates how to use [Brownbook Business Listings Scraper](https://apify.com/automation-lab/brownbook-business-directory-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/brownbook-business-directory-scraper) to learn more, explore other use cases, and run it yourself.