# Five Below California Store Location Extractor

**Use case:** 

Extract official Five Below California stores with street addresses, ZIP codes, phone numbers, coordinates, and weekly hours.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://locations.fivebelow.com/ca/alameda"
    }
  ],
  "stateCodes": [
    "CA"
  ],
  "cityPaths": [],
  "maxItems": 500,
  "maxConcurrency": 10
}
```

## Output

```json
{
  "storeId": {
    "label": "Store ID",
    "format": "string"
  },
  "name": {
    "label": "Name",
    "format": "string"
  },
  "url": {
    "label": "Official URL",
    "format": "string"
  },
  "streetAddress": {
    "label": "Street address",
    "format": "string"
  },
  "city": {
    "label": "City",
    "format": "string"
  },
  "state": {
    "label": "State",
    "format": "string"
  },
  "postalCode": {
    "label": "Postal code",
    "format": "string"
  },
  "country": {
    "label": "Country",
    "format": "string"
  },
  "phone": {
    "label": "Phone",
    "format": "string"
  },
  "latitude": {
    "label": "Latitude",
    "format": "number"
  },
  "longitude": {
    "label": "Longitude",
    "format": "number"
  },
  "mondayHours": {
    "label": "Monday",
    "format": "string"
  },
  "tuesdayHours": {
    "label": "Tuesday",
    "format": "string"
  },
  "wednesdayHours": {
    "label": "Wednesday",
    "format": "string"
  },
  "thursdayHours": {
    "label": "Thursday",
    "format": "string"
  },
  "fridayHours": {
    "label": "Friday",
    "format": "string"
  },
  "saturdayHours": {
    "label": "Saturday",
    "format": "string"
  },
  "sundayHours": {
    "label": "Sunday",
    "format": "string"
  },
  "sourceAsOf": {
    "label": "Source as of",
    "format": "string"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Five Below Store Locations Scraper](https://apify.com/automation-lab/five-below-store-locations-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/five-below-store-locations-scraper) to learn more, explore other use cases, and run it yourself.