# Track Mover Reputation Over Time - Bark.com

**Use case:** 

Track Bark.com moving-company profiles with Company, Location, Rating, Reviews, Hires, Response (min) and Scraped at. Re-run to watch ratings change.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.bark.com/en/us/company/swift-move-logistics/3nD8q/"
    },
    {
      "url": "https://www.bark.com/en/us/company/metro-relocation-pros/7fW2m/"
    }
  ],
  "includeReviews": false,
  "maxConcurrency": 5,
  "minRequestDelayMs": 2000,
  "maxRequestRetries": 5,
  "useBrowserFallback": true,
  "maxItems": 1000,
  "debugRenderPath": false,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "name": {
    "label": "Company",
    "format": "string"
  },
  "canonicalUrl": {
    "label": "Profile URL",
    "format": "string"
  },
  "locationRaw": {
    "label": "Location",
    "format": "string"
  },
  "ratingValue": {
    "label": "Rating",
    "format": "number"
  },
  "reviewCount": {
    "label": "Reviews",
    "format": "integer"
  },
  "hiresOnBark": {
    "label": "Hires",
    "format": "integer"
  },
  "responseTimeMinutes": {
    "label": "Response (min)",
    "format": "integer"
  },
  "logoUrl": {
    "label": "Logo",
    "format": "string"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "string"
  }
}
```

## About this Actor

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