# Booksy Los Angeles Nail Salons Scraper

**Use case:** 

Scrape nail salons on Booksy in Los Angeles with name, address, city, rating, and booking link. Export structured results to JSON or CSV.

## Input

```json
{
  "searchQuery": "nail salon",
  "location": "Los Angeles",
  "maxItems": 50,
  "includeDetails": true
}
```

## Output

```json
{
  "imageUrl": {
    "label": "Image Url",
    "format": "image"
  },
  "id": {
    "label": "Id",
    "format": "text"
  },
  "name": {
    "label": "Name",
    "format": "text"
  },
  "url": {
    "label": "Url",
    "format": "link"
  },
  "address": {
    "label": "Address",
    "format": "text"
  },
  "city": {
    "label": "City",
    "format": "text"
  },
  "state": {
    "label": "State",
    "format": "text"
  },
  "zipcode": {
    "label": "Zipcode",
    "format": "text"
  },
  "lat": {
    "label": "Lat",
    "format": "date"
  },
  "lon": {
    "label": "Lon",
    "format": "date"
  },
  "distance": {
    "label": "Distance",
    "format": "text"
  },
  "reviewsCount": {
    "label": "Reviews Count",
    "format": "text"
  },
  "reviewsStars": {
    "label": "Reviews Stars",
    "format": "text"
  },
  "primaryCategory": {
    "label": "Primary Category",
    "format": "text"
  },
  "promoted": {
    "label": "Promoted",
    "format": "text"
  },
  "hasOnlineServices": {
    "label": "Has Online Services",
    "format": "text"
  }
}
```

## About this Actor

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