# RE/MAX Los Angeles Homes Scraper

**Use case:** 

Scrape RE/MAX Los Angeles real-estate listings with address, price, beds, baths, square feet, and MLS number. Export to JSON or CSV.

## Input

```json
{
  "startUrl": "https://www.remax.com/homes-for-sale/ca/los-angeles/city/0644000",
  "propertyType": "For Sale",
  "maxItems": 50
}
```

## Output

```json
{
  "imageUrl": {
    "label": "Image URL",
    "format": "url"
  },
  "title": {
    "label": "Property Title",
    "format": "text"
  },
  "listingUrl": {
    "label": "Listing URL",
    "format": "url"
  },
  "mlsNumber": {
    "label": "MLS Number",
    "format": "text"
  },
  "propertyId": {
    "label": "Property ID",
    "format": "text"
  },
  "address": {
    "label": "Address",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "text"
  },
  "priceNumeric": {
    "label": "Price (Numeric)",
    "format": "number"
  },
  "status": {
    "label": "Status",
    "format": "text"
  },
  "propertyType": {
    "label": "Property Type",
    "format": "text"
  },
  "city": {
    "label": "City",
    "format": "text"
  },
  "county": {
    "label": "County",
    "format": "text"
  },
  "bedrooms": {
    "label": "Bedrooms",
    "format": "number"
  },
  "bathrooms": {
    "label": "Bathrooms",
    "format": "number"
  },
  "squareFeet": {
    "label": "Square Feet",
    "format": "number"
  },
  "yearBuilt": {
    "label": "Year Built",
    "format": "number"
  },
  "pricePerSqFt": {
    "label": "Price per Sq Ft",
    "format": "number"
  },
  "agent": {
    "label": "Agent",
    "format": "text"
  },
  "agentPhone": {
    "label": "Agent Phone",
    "format": "text"
  },
  "propertySubType": {
    "label": "Property Sub Type",
    "format": "text"
  },
  "hoaFee": {
    "label": "HOA Fee",
    "format": "number"
  },
  "daysOnWebsite": {
    "label": "Days on Website",
    "format": "number"
  },
  "coolingDescription": {
    "label": "Cooling Description",
    "format": "text"
  },
  "heatingDescription": {
    "label": "Heating Description",
    "format": "text"
  },
  "parkingFeatures": {
    "label": "Parking Features",
    "format": "text"
  },
  "appliances": {
    "label": "Appliances",
    "format": "text"
  },
  "flooring": {
    "label": "Flooring",
    "format": "text"
  },
  "laundryFeatures": {
    "label": "Laundry Features",
    "format": "text"
  },
  "buildingFeatures": {
    "label": "Building Features",
    "format": "text"
  },
  "associationFeeFrequency": {
    "label": "Association Fee Frequency",
    "format": "text"
  },
  "associationFeeIncludes": {
    "label": "Association Fee Includes",
    "format": "text"
  },
  "elementarySchool": {
    "label": "Elementary School",
    "format": "text"
  },
  "middleSchool": {
    "label": "Middle School",
    "format": "text"
  },
  "highSchool": {
    "label": "High School",
    "format": "text"
  },
  "schoolDistrict": {
    "label": "School District",
    "format": "text"
  },
  "subdivisionName": {
    "label": "Subdivision Name",
    "format": "text"
  },
  "updatedDate": {
    "label": "Updated Date",
    "format": "text"
  },
  "imageUrls": {
    "label": "Gallery Images",
    "format": "json"
  },
  "interiorFeatures": {
    "label": "Interior Features",
    "format": "json"
  },
  "associationAmenities": {
    "label": "Association Amenities",
    "format": "json"
  },
  "scrapedTimestamp": {
    "label": "Scraped Date",
    "format": "datetime"
  },
  "error": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

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