# ChurchFinder directory scraper task

**Use case:** 

Scrape ChurchFinder city directory pages for church names, denominations, addresses, phone numbers, websites, profiles, and ratings.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.churchfinder.com/churches/ca/los-angeles"
    }
  ],
  "state": "ca",
  "city": "Los Angeles",
  "maxItems": 25,
  "includeProfiles": true,
  "maxPagesPerCity": 2
}
```

## Output

```json
{
  "name": {
    "label": "Name",
    "format": "text"
  },
  "profileUrl": {
    "label": "Profile URL",
    "format": "link"
  },
  "denomination": {
    "label": "Denomination",
    "format": "text"
  },
  "address": {
    "label": "Address",
    "format": "text"
  },
  "city": {
    "label": "City",
    "format": "text"
  },
  "state": {
    "label": "State",
    "format": "text"
  },
  "zip": {
    "label": "ZIP",
    "format": "text"
  },
  "phone": {
    "label": "Phone",
    "format": "text"
  },
  "website": {
    "label": "Website",
    "format": "link"
  },
  "email": {
    "label": "Email",
    "format": "text"
  },
  "pastor": {
    "label": "Pastor",
    "format": "text"
  },
  "serviceTimes": {
    "label": "Service times",
    "format": "text"
  },
  "description": {
    "label": "Description",
    "format": "text"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "reviewCount": {
    "label": "Reviews",
    "format": "number"
  },
  "sourceUrl": {
    "label": "Source URL",
    "format": "link"
  }
}
```

## About this Actor

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