# All store locations for one brand (Dagne Dover)

**Use case:** 

Every Dagne Dover retail location with address, coordinates and opening hours, taken from the brand's own store locator. Swap in any brand's locator URL to get the same list. Run it again against the first run's dataset to see openings, closures and moves.

## Input

```json
{
  "locatorUrls": [
    "https://www.dagnedover.com/pages/store-locator"
  ],
  "maxLocations": 0,
  "includeHours": true,
  "emitUnchanged": true,
  "monitorMaxLocations": 10000
}
```

## Output

```json
{
  "brand": {
    "label": "Brand",
    "format": "string"
  },
  "storeName": {
    "label": "Store name",
    "format": "string"
  },
  "addressFull": {
    "label": "Full address",
    "format": "string"
  },
  "city": {
    "label": "City",
    "format": "string"
  },
  "state": {
    "label": "State or province",
    "format": "string"
  },
  "country": {
    "label": "Country",
    "format": "string"
  },
  "changeType": {
    "label": "Change type",
    "format": "string"
  },
  "locatorPlatform": {
    "label": "Locator platform",
    "format": "string"
  },
  "storeUrl": {
    "label": "Store URL",
    "format": "string"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Store Locator Scraper with Change Detection](https://apify.com/finaldynamics/store-locator-scraper-change-detection.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/finaldynamics/store-locator-scraper-change-detection.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/finaldynamics/store-locator-scraper-change-detection.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
