# Build a photographer prospect list on Bark

**Use case:** 

Collect every photographer Bark lists across the US: provider name, profile URL, star rating, service area and logo, one deduplicated row per provider.

## Input

```json
{
  "country": "us",
  "categories": [
    "photographers"
  ],
  "state": "",
  "city": "",
  "includeNationalAndState": true,
  "maxItems": 1000,
  "maxListingPages": 50,
  "maxConcurrency": 5,
  "minRequestDelayMs": 2000,
  "maxRequestRetries": 5,
  "useBrowserFallback": true,
  "debugRenderPath": false,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "name": {
    "label": "Provider",
    "format": "string"
  },
  "profileUrl": {
    "label": "Profile URL",
    "format": "string"
  },
  "category": {
    "label": "Category",
    "format": "string"
  },
  "listingLocation": {
    "label": "Location",
    "format": "string"
  },
  "ratingValue": {
    "label": "Rating",
    "format": "number"
  },
  "country": {
    "label": "Country",
    "format": "string"
  },
  "state": {
    "label": "State",
    "format": "string"
  },
  "city": {
    "label": "City",
    "format": "string"
  },
  "logoUrl": {
    "label": "Logo",
    "format": "string"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Bark.com Directory Scraper – Listings & Profile URLs](https://apify.com/scrapesage/bark-listing-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/scrapesage/bark-listing-scraper) to learn more, explore other use cases, and run it yourself.