# Apartmentlist Property Search Scraper (`stealth_mode/apartmentlist-property-search-scraper`) Actor

Scrape rental property listings from ApartmentList with comprehensive details including amenities, pricing, availability, photos, and reviews. Perfect for real estate analysts, investors, and market researchers needing structured apartment data from ApartmentList's massive catalog.

- **URL**: https://apify.com/stealth\_mode/apartmentlist-property-search-scraper.md
- **Developed by:** [Stealth mode](https://apify.com/stealth_mode) (community)
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $3.00 / 1,000 results

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.
Since this Actor supports Apify Store discounts, the price gets lower the higher subscription plan you have.

Learn more: https://docs.apify.com/actors/running/actors-in-store.md#pay-per-event

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).

# README

## ApartmentList Property Scraper: Extract Rental Data at Scale

***

### What Is ApartmentList.com?

ApartmentList.com is one of the largest U.S. apartment rental marketplaces, featuring hundreds of thousands of listings across all 50 states. It provides renters with searchable access to properties, pricing, amenities, reviews, and availability information. For real estate professionals, investors, and data analysts, manually collecting property information from ApartmentList is tedious and impractical at scale — the **ApartmentList Property Search Scraper** automates this process, extracting detailed property records into structured data.

***

### Overview

The **ApartmentList Property Search Scraper** collects comprehensive rental property data from ApartmentList search result pages, capturing 30+ fields per property including community amenities, pricing, availability, location details, and tenant reviews. It is ideal for:

- **Real estate investors** researching markets and competitor pricing
- **Data analysts** building housing market datasets
- **Property management companies** tracking rental trends and opportunities
- **Researchers** studying rental affordability and market dynamics
- **Aggregator platforms** consolidating rental listings from multiple sources

Key features include flexible URL configuration, configurable item limits, graceful error handling, and rich output covering both property metadata and detailed amenity information.

***

### Input Format

The scraper accepts a JSON configuration object specifying target URLs and collection parameters:

```json
{
    "urls": [
        "https://www.apartmentlist.com/co"
    ],
    "max_items_per_url": 200,
    "ignore_url_failures": true
}
```

| Field | Description | Type | Example |
|---|---|---|---|
| `urls` | ApartmentList search result page URLs to scrape | Array | `["https://www.apartmentlist.com/co"]` |
| `max_items_per_url` | Maximum number of properties per URL | Integer | `200` |
| `ignore_url_failures` | Continue running if some URLs fail | Boolean | `true` |

**Input guidelines:**

- Use full ApartmentList state or city URLs (e.g., `apartmentlist.com/co` for Colorado, `apartmentlist.com/co/denver` for Denver)
- Each URL can return up to the `max_items_per_url` limit; higher limits increase runtime
- Set `ignore_url_failures: true` for production runs to skip temporary page errors
- Proxy use is recommended to avoid rate limiting on large-scale collections

***

### Output Format

**Sample output**

```json
{
  "community_amenities": [
    {
      "display_name": "Accessible",
      "cloudinary_id": "amenity_accessible_icon",
      "filter_param": "is_accessible",
      "group": "community_features",
      "group_rank": 52
    },
    {
      "display_name": "Business center",
      "cloudinary_id": "amenity_computer_icon",
      "filter_param": "has_business_center",
      "group": "community_features",
      "group_rank": 31
    },
    {
      "display_name": "Clubhouse",
      "cloudinary_id": "amenity_sofa_icon",
      "filter_param": null,
      "group": "community_features",
      "group_rank": 29
    },
    {
      "display_name": "Courtyard",
      "cloudinary_id": "amenity_plant_icon",
      "filter_param": null,
      "group": "community_features",
      "group_rank": 45
    },
    {
      "display_name": "Elevator",
      "cloudinary_id": "amenity_elevator_icon",
      "filter_param": "has_elevator",
      "group": "community_features",
      "group_rank": 11
    },
    {
      "display_name": "24hr gym",
      "cloudinary_id": "amenity_weight_icon",
      "filter_param": "has_gym",
      "group": "fitness",
      "group_rank": 1
    },
    {
      "display_name": "Parking",
      "cloudinary_id": "amenity_parking_icon",
      "filter_param": "has_parking",
      "group": "parking",
      "group_rank": 3
    },
    {
      "display_name": "Playground",
      "cloudinary_id": "amenity_slide_icon",
      "filter_param": null,
      "group": "community_features",
      "group_rank": 10
    },
    {
      "display_name": "Pool",
      "cloudinary_id": "amenity_pool_icon",
      "filter_param": "has_pool",
      "group": "community_features",
      "group_rank": 4
    },
    {
      "display_name": "Bbq/grill",
      "cloudinary_id": "amenity_bbq_icon",
      "filter_param": "has_bbq",
      "group": "community_features",
      "group_rank": 41
    },
    {
      "display_name": "Bike storage",
      "cloudinary_id": "amenity_bike_icon",
      "filter_param": null,
      "group": "community_features",
      "group_rank": 33
    },
    {
      "display_name": "Garage",
      "cloudinary_id": "amenity_garage_icon",
      "filter_param": "has_garage",
      "group": "parking",
      "group_rank": 1
    },
    {
      "display_name": "Hot tub",
      "cloudinary_id": "amenity_hot_tub_icon",
      "filter_param": "has_hot_tub",
      "group": "community_features",
      "group_rank": 32
    },
    {
      "display_name": "Package receiving",
      "cloudinary_id": "amenity_shipping_icon",
      "filter_param": null,
      "group": "community_features",
      "group_rank": 9
    },
    {
      "display_name": "Cats allowed",
      "cloudinary_id": "amenity_cat_icon",
      "filter_param": "is_cat_friendly",
      "group": "pets",
      "group_rank": 2
    },
    {
      "display_name": "Dogs allowed",
      "cloudinary_id": "amenity_dog_icon",
      "filter_param": "is_dog_friendly",
      "group": "pets",
      "group_rank": 1
    },
    {
      "display_name": "Pet friendly",
      "cloudinary_id": "amenity_dog_icon",
      "filter_param": "is_pet_friendly",
      "group": "pets",
      "group_rank": 3
    },
    {
      "display_name": "CC payments",
      "cloudinary_id": "amenity_creditcard_icon",
      "filter_param": null,
      "group": "community_features",
      "group_rank": 50
    },
    {
      "display_name": "Conference room",
      "cloudinary_id": "amenity_table_icon",
      "filter_param": null,
      "group": "community_features",
      "group_rank": 35
    },
    {
      "display_name": "Dog grooming area",
      "cloudinary_id": "amenity_dog_icon",
      "filter_param": null,
      "group": "community_features",
      "group_rank": 20
    },
    {
      "display_name": "Dog park",
      "cloudinary_id": "amenity_dog_icon",
      "filter_param": null,
      "group": "community_features",
      "group_rank": 6
    },
    {
      "display_name": "E-payments",
      "cloudinary_id": "amenity_creditcard_icon",
      "filter_param": null,
      "group": "community_features",
      "group_rank": 44
    },
    {
      "display_name": "Game room",
      "cloudinary_id": "amenity_ping_pong_icon",
      "filter_param": null,
      "group": "community_features",
      "group_rank": 36
    },
    {
      "display_name": "Internet access",
      "cloudinary_id": "amenity_internet_icon",
      "filter_param": null,
      "group": "community_features",
      "group_rank": 53
    },
    {
      "display_name": "Media room",
      "cloudinary_id": "amenity_popcorn_icon",
      "filter_param": null,
      "group": "community_features",
      "group_rank": 37
    },
    {
      "display_name": "Online portal",
      "cloudinary_id": "amenity_portal_icon",
      "filter_param": null,
      "group": "community_features",
      "group_rank": 48
    }
  ],
  "unit_amenities": [
    {
      "display_name": "Air conditioning",
      "cloudinary_id": "amenity_ac_icon",
      "filter_param": "has_air_conditioning",
      "group": "unit_features",
      "group_rank": 9
    },
    {
      "display_name": "Carpet",
      "cloudinary_id": "amenity_carpet_icon",
      "filter_param": "has_carpet",
      "group": "unit_features",
      "group_rank": 18
    },
    {
      "display_name": "Ceiling fan",
      "cloudinary_id": "amenity_fan_icon",
      "filter_param": "has_ceiling_fan",
      "group": "unit_features",
      "group_rank": 10
    },
    {
      "display_name": "Dishwasher",
      "cloudinary_id": "amenity_dishwasher_icon",
      "filter_param": "has_dishwasher",
      "group": "unit_features",
      "group_rank": 5
    },
    {
      "display_name": "Garbage disposal",
      "cloudinary_id": "amenity_trash_icon",
      "filter_param": "has_garbage_disposal",
      "group": "unit_features",
      "group_rank": 18
    },
    {
      "display_name": "In unit laundry",
      "cloudinary_id": "amenity_washer_icon",
      "filter_param": "has_in_unit_laundry",
      "group": "laundry",
      "group_rank": 1
    },
    {
      "display_name": "Microwave",
      "cloudinary_id": "amenity_microwave_icon",
      "filter_param": null,
      "group": "unit_features",
      "group_rank": 15
    },
    {
      "display_name": "Patio / balcony",
      "cloudinary_id": "amenity_patio_icon",
      "filter_param": "has_balcony",
      "group": "unit_features",
      "group_rank": 1
    },
    {
      "display_name": "Refrigerator",
      "cloudinary_id": "amenity_refrigerator_icon",
      "filter_param": null,
      "group": "unit_features",
      "group_rank": 21
    },
    {
      "display_name": "Hardwood floors",
      "cloudinary_id": "amenity_hardwood_icon",
      "filter_param": "has_hardwood_floors",
      "group": "unit_features",
      "group_rank": 3
    },
    {
      "display_name": "W/D hookup",
      "cloudinary_id": "amenity_washer_icon",
      "filter_param": "has_laundry_connections",
      "group": "laundry",
      "group_rank": 2
    },
    {
      "display_name": "Extra storage",
      "cloudinary_id": "amenity_storage_icon",
      "filter_param": null,
      "group": "unit_features",
      "group_rank": 13
    },
    {
      "display_name": "Fireplace",
      "cloudinary_id": "amenity_fireplace_icon",
      "filter_param": "has_fireplace",
      "group": "unit_features",
      "group_rank": 12
    },
    {
      "display_name": "Granite counters",
      "cloudinary_id": "amenity_counter_icon",
      "filter_param": "has_granite_counter",
      "group": "unit_features",
      "group_rank": 2
    },
    {
      "display_name": "Ice maker",
      "cloudinary_id": "amenity_ice_icon",
      "filter_param": "has_ice_maker",
      "group": "unit_features",
      "group_rank": 14
    },
    {
      "display_name": "Oven",
      "cloudinary_id": "amenity_oven_icon",
      "filter_param": null,
      "group": "unit_features",
      "group_rank": 20
    },
    {
      "display_name": "Range",
      "cloudinary_id": "amenity_oven_icon",
      "filter_param": null,
      "group": "unit_features",
      "group_rank": 19
    },
    {
      "display_name": "Stainless steel",
      "cloudinary_id": "amenity_refrigerator_icon",
      "filter_param": "has_stainless_steel",
      "group": "unit_features",
      "group_rank": 7
    },
    {
      "display_name": "Walk in closets",
      "cloudinary_id": "amenity_hanger_icon",
      "filter_param": "has_walk_in_closet",
      "group": "unit_features",
      "group_rank": 8
    }
  ],
  "neighborhood": "Transit Village",
  "rental_id": "p37447354",
  "display_name": "Reve Boulder",
  "formatted_address": "3000 Pearl Parkway, Boulder, CO 80301",
  "all_photos": [
    {
      "id": "981fd621b367517ff73d3d969e9c5552",
      "type": "rectangle"
    },
    {
      "id": "73bccb4843e1bc8b5dccd72d2994d3bc",
      "type": "rectangle"
    },
    {
      "id": "4f465bd59dcb3e660c1ab0beb7a2add2",
      "type": "rectangle"
    },
    {
      "id": "84aa04de10595daeba4e0647cb13c7b0",
      "type": "rectangle"
    },
    {
      "id": "b8ed4ce23753ef6da3a51624b2bfce81",
      "type": "rectangle"
    },
    {
      "id": "c3eee4addf77187e3836df1a253c78c5",
      "type": "rectangle"
    },
    {
      "id": "209cf91094f18c9e4281bc61586b483f",
      "type": "rectangle"
    },
    {
      "id": "677df11ead7941a4bb79d1ced864d4e7",
      "type": "rectangle"
    },
    {
      "id": "11934f1bb6f47d6af725ca0ce65ddc51",
      "type": "rectangle"
    },
    {
      "id": "25b992a4b485ebfcbcdd0dbd21c79478",
      "type": "rectangle"
    },
    {
      "id": "8560cfbd1945981ab3a7c66d743f114a",
      "type": "rectangle"
    },
    {
      "id": "18fceb1a3eb977787888cbe8f78b6074",
      "type": "rectangle"
    },
    {
      "id": "2ffa54e18ad94bca91e189b4eb0e338e",
      "type": "rectangle"
    },
    {
      "id": "e5358bbe300883737b2c32f9aa6b8e78",
      "type": "rectangle"
    }
  ],
  "phone": "(360) 838-0041",
  "nurture_enabled": false,
  "first_photo": [
    {
      "id": "981fd621b367517ff73d3d969e9c5552",
      "type": "rectangle"
    }
  ],
  "city_id": 660508,
  "county_id": 708742,
  "slug": "/co/boulder/reve-boulder--1",
  "updated_at": "2026-09-14T15:12:58.498Z",
  "upsells": [
    "lift"
  ],
  "occupancy_types": [],
  "contract": "basic",
  "office_hours_this_week": {},
  "time_zone_short": null,
  "has_rent_special": false,
  "reviews_value_rating": 4,
  "has_unit_level_availability": true,
  "units_available": 21,
  "soonest_available": "2026-09-14",
  "bed_range": [
    0,
    1,
    2
  ],
  "amenities_text": "In unit laundry, Patio / balcony, Granite counters, Hardwood floors, Dishwasher, Pet friendly + more",
  "lat": 40.0231270193677,
  "lon": -105.253113331113,
  "sample_summary": {
    "title": "Ideal central living in popular Boulder neighborhood.",
    "text": "Located in Boulder's sought-after Transit Village, Reve Boulder offers a vibrant living experience. With both cats and dogs welcome, the pet-friendly community is complemented by high-end amenities such as a well-equipped fitness center, pool, and resident lounge. The friendly, responsive front office and modern, comfortable apartments enhance the appeal, making it a delightful place to call home.",
    "tag": "Pet Paradise"
  },
  "price_range": {
    "lowest": 2346,
    "highest": 5150,
    "by_bed_count": {
      "0": {
        "min_price": 2346,
        "max_price": 2346
      },
      "1": {
        "min_price": 2487,
        "max_price": 4298
      },
      "2": {
        "min_price": 3711,
        "max_price": 5150
      }
    }
  },
  "price_to_floorplans": {
    "0": {
      "bath": 1,
      "bed": 0,
      "id": 10195805,
      "name": "Studio 3",
      "photos": [
        {
          "id": "5f2cab00f0c1644873f7c9223ced4439",
          "type": "rectangle"
        }
      ],
      "price": 0,
      "price_max": 0,
      "remote_listing_id": "3938388",
      "sqft": 647,
      "sqft_max": 647,
      "units": []
    },
    "2346": {
      "bath": 1,
      "bed": 0,
      "id": 10195813,
      "name": "Studio 1",
      "photos": [
        {
          "id": "26fe56cf0d8eafa9bef01c2e1a4ea8d9",
          "type": "rectangle"
        }
      ],
      "price": 2346,
      "price_max": 0,
      "remote_listing_id": "3938385",
      "sqft": 530,
      "sqft_max": 530,
      "units": [
        {
          "apply_online_url": "http://reveboulder.securecafe.com/onlineleasing/reve0/oleapplication.aspx?stepname=RentalOptions&UnitID=29276202&myOlePropertyId=1371292&floorPlans=3938385&src=21&rcstdid=MTQ%3d-pGJGpRzZiM8%3d",
          "availability": "available",
          "available_on": "2026-07-12",
          "display_name": "4245",
          "id": 47284952,
          "name": "4245",
          "price": 2346,
          "price_max": 0,
          "remote_listing_id": "RV-A1.2-4245",
          "sqft": 530,
          "unit_rental_id": "p37447354-RV-A1.2-4245",
          "updated_at": "2026-09-14T09:05:27Z",
          "base_price": 2346,
          "total_price": 2346,
          "required_fees": 0,
          "lease_length": 14,
          "available_now": true
        }
      ]
    },
    "2487": {
      "bath": 1,
      "bed": 1,
      "id": 10195804,
      "name": "Studio 4",
      "photos": [
        {
          "id": "f89016d63accf6b84f0a69a78453f696",
          "type": "rectangle"
        }
      ],
      "price": 2487,
      "price_max": 0,
      "remote_listing_id": "3938386",
      "sqft": 686,
      "sqft_max": 703,
      "units": [
        {
          "apply_online_url": "http://reveboulder.securecafe.com/onlineleasing/reve0/oleapplication.aspx?stepname=RentalOptions&UnitID=29276208&myOlePropertyId=1371292&floorPlans=3938386&src=21&rcstdid=MTQ%3d-pGJGpRzZiM8%3d",
          "availability": "available",
          "available_on": "2026-09-08",
          "display_name": "1345",
          "id": 48292208,
          "name": "1345",
          "price": 2487,
          "price_max": 0,
          "remote_listing_id": "RV-A2.1-1345",
          "sqft": 703,
          "unit_rental_id": "p37447354-RV-A2.1-1345",
          "updated_at": "2026-09-14T09:06:12Z",
          "base_price": 2487,
          "total_price": 2487,
          "required_fees": 0,
          "lease_length": 14,
          "available_now": true
        },
        {
          "apply_online_url": "http://reveboulder.securecafe.com/onlineleasing/reve0/oleapplication.aspx?stepname=RentalOptions&UnitID=29276220&myOlePropertyId=1371292&floorPlans=3938386&src=21&rcstdid=MTQ%3d-pGJGpRzZiM8%3d",
          "availability": "available",
          "available_on": "2026-10-07",
          "display_name": "1308",
          "id": 47944982,
          "name": "1308",
          "price": 2537,
          "price_max": 0,
          "remote_listing_id": "RV-A2.1-1308",
          "sqft": 703,
          "unit_rental_id": "p37447354-RV-A2.1-1308",
          "updated_at": "2026-09-14T09:05:34Z",
          "base_price": 2537,
          "total_price": 2537,
          "required_fees": 0,
          "lease_length": 15,
          "available_now": false
        },
        {
          "apply_online_url": "http://reveboulder.securecafe.com/onlineleasing/reve0/oleapplication.aspx?stepname=RentalOptions&UnitID=29276209&myOlePropertyId=1371292&floorPlans=3938386&src=21&rcstdid=MTQ%3d-pGJGpRzZiM8%3d",
          "availability": "available",
          "available_on": "2026-10-17",
          "display_name": "1408",
          "id": 48493411,
          "name": "1408",
          "price": 2588,
          "price_max": 0,
          "remote_listing_id": "RV-A2.1-1408",
          "sqft": 703,
          "unit_rental_id": "p37447354-RV-A2.1-1408",
          "updated_at": "2026-09-14T09:06:18Z",
          "base_price": 2588,
          "total_price": 2588,
          "required_fees": 0,
          "lease_length": 15,
          "available_now": false
        },
        {
          "apply_online_url": "http://reveboulder.securecafe.com/onlineleasing/reve0/oleapplication.aspx?stepname=RentalOptions&UnitID=29276207&myOlePropertyId=1371292&floorPlans=3938386&src=21&rcstdid=MTQ%3d-pGJGpRzZiM8%3d",
          "availability": "available",
          "available_on": "2026-09-30",
          "display_name": "1338",
          "id": 46133192,
          "name": "1338",
          "price": 2537,
          "price_max": 0,
          "remote_listing_id": "RV-A2.1-1338",
          "sqft": 703,
          "unit_rental_id": "p37447354-RV-A2.1-1338",
          "updated_at": "2026-09-14T09:05:26Z",
          "base_price": 2537,
          "total_price": 2537,
          "required_fees": 0,
          "lease_length": 14,
          "available_now": false
        }
      ]
    },
    "2533": {
      "bath": 1,
      "bed": 1,
      "id": 10195816,
      "name": "A3",
      "photos": [
        {
          "id": "70c6e9c488678c255dd212f10f30e455",
          "type": "rectangle"
        }
      ],
      "price": 2533,
      "price_max": 0,
      "remote_listing_id": "3938390",
      "sqft": 664,
      "sqft_max": 767,
      "units": [
        {
          "apply_online_url": "http://reveboulder.securecafe.com/onlineleasing/reve0/oleapplication.aspx?stepname=RentalOptions&UnitID=29276231&myOlePropertyId=1371292&floorPlans=3938390&src=21&rcstdid=MTQ%3d-pGJGpRzZiM8%3d",
          "availability": "available",
          "available_on": "2026-10-30",
          "display_name": "1441",
          "id": 47968774,
          "name": "1441",
          "price": 2589,
          "price_max": 0,
          "remote_listing_id": "RV-A3.1-1441",
          "sqft": 767,
          "unit_rental_id": "p37447354-RV-A3.1-1441",
          "updated_at": "2026-09-14T09:05:34Z",
          "base_price": 2589,
          "total_price": 2589,
          "required_fees": 0,
          "lease_length": 15,
          "available_now": false
        },
        {
          "apply_online_url": "http://reveboulder.securecafe.com/onlineleasing/reve0/oleapplication.aspx?stepname=RentalOptions&UnitID=29276271&myOlePropertyId=1371292&floorPlans=3938390&src=21&rcstdid=MTQ%3d-pGJGpRzZiM8%3d",
          "availability": "available",
          "available_on": "2026-10-30",
          "display_name": "1339",
          "id": 48509858,
          "name": "1339",
          "price": 2539,
          "price_max": 0,
          "remote_listing_id": "RV-A3.1-1339",
          "sqft": 767,
          "unit_rental_id": "p37447354-RV-A3.1-1339",
          "updated_at": "2026-09-14T09:06:18Z",
          "base_price": 2539,
          "total_price": 2539,
          "required_fees": 0,
          "lease_length": 15,
          "available_now": false
        },
        {
          "apply_online_url": "http://reveboulder.securecafe.com/onlineleasing/reve0/oleapplication.aspx?stepname=RentalOptions&UnitID=29276289&myOlePropertyId=1371292&floorPlans=3938390&src=21&rcstdid=MTQ%3d-pGJGpRzZiM8%3d",
          "availability": "available",
          "available_on": "2026-09-01",
          "display_name": "1204",
          "id": 47224400,
          "name": "1204",
          "price": 2540,
          "price_max": 0,
          "remote_listing_id": "RV-A3.1a-1204",
          "sqft": 741,
          "unit_rental_id": "p37447354-RV-A3.1a-1204",
          "updated_at": "2026-09-14T09:05:27Z",
          "base_price": 2540,
          "total_price": 2540,
          "required_fees": 0,
          "lease_length": 14,
          "available_now": true
        },
        {
          "apply_online_url": "http://reveboulder.securecafe.com/onlineleasing/reve0/oleapplication.aspx?stepname=RentalOptions&UnitID=29276259&myOlePropertyId=1371292&floorPlans=3938390&src=21&rcstdid=MTQ%3d-pGJGpRzZiM8%3d",
          "availability": "available",
          "available_on": "2026-09-08",
          "display_name": "1225",
          "id": 48082802,
          "name": "1225",
          "price": 2533,
          "price_max": 0,
          "remote_listing_id": "RV-A3.1-1225",
          "sqft": 767,
          "unit_rental_id": "p37447354-RV-A3.1-1225",
          "updated_at": "2026-09-14T09:05:35Z",
          "base_price": 2533,
          "total_price": 2533,
          "required_fees": 0,
          "lease_length": 14,
          "available_now": true
        },
        {
          "apply_online_url": "http://reveboulder.securecafe.com/onlineleasing/reve0/oleapplication.aspx?stepname=RentalOptions&UnitID=29276269&myOlePropertyId=1371292&floorPlans=3938390&src=21&rcstdid=MTQ%3d-pGJGpRzZiM8%3d",
          "availability": "available",
          "available_on": "2026-10-11",
          "display_name": "1221",
          "id": 48523803,
          "name": "1221",
          "price": 2533,
          "price_max": 0,
          "remote_listing_id": "RV-A3.1-1221",
          "sqft": 767,
          "unit_rental_id": "p37447354-RV-A3.1-1221",
          "updated_at": "2026-09-14T09:06:18Z",
          "base_price": 2533,
          "total_price": 2533,
          "required_fees": 0,
          "lease_length": 15,
          "available_now": false
        },
        {
          "apply_online_url": "http://reveboulder.securecafe.com/onlineleasing/reve0/oleapplication.aspx?stepname=RentalOptions&UnitID=29276267&myOlePropertyId=1371292&floorPlans=3938390&src=21&rcstdid=MTQ%3d-pGJGpRzZiM8%3d",
          "availability": "available",
          "available_on": "2026-12-05",
          "display_name": "1412",
          "id": 48537433,
          "name": "1412",
          "price": 2616,
          "price_max": 0,
          "remote_listing_id": "RV-A3.1-1412",
          "sqft": 767,
          "unit_rental_id": "p37447354-RV-A3.1-1412",
          "updated_at": "2026-09-14T09:06:19Z",
          "base_price": 2616,
          "total_price": 2616,
          "required_fees": 0,
          "lease_length": 15,
          "available_now": false
        },
        {
          "apply_online_url": "http://reveboulder.securecafe.com/onlineleasing/reve0/oleapplication.aspx?stepname=RentalOptions&UnitID=29276291&myOlePropertyId=1371292&floorPlans=3938390&src=21&rcstdid=MTQ%3d-pGJGpRzZiM8%3d",
          "availability": "available",
          "available_on": "2026-10-09",
          "display_name": "1304",
          "id": 48082803,
          "name": "1304",
          "price": 2540,
          "price_max": 0,
          "remote_listing_id": "RV-A3.1a-1304",
          "sqft": 741,
          "unit_rental_id": "p37447354-RV-A3.1a-1304",
          "updated_at": "2026-09-14T09:05:35Z",
          "base_price": 2540,
          "total_price": 2540,
          "required_fees": 0,
          "lease_length": 15,
          "available_now": false
        }
      ]
    },
    "2703": {
      "bath": 1,
      "bed": 1,
      "id": 10195809,
      "name": "A5",
      "photos": [
        {
          "id": "58595d29c19c80ab8d0b920a33ee8e2f",
          "type": "rectangle"
        }
      ],
      "price": 2703,
      "price_max": 0,
      "remote_listing_id": "3938392",
      "sqft": 872,
      "sqft_max": 895,
      "units": [
        {
          "apply_online_url": "http://reveboulder.securecafe.com/onlineleasing/reve0/oleapplication.aspx?stepname=RentalOptions&UnitID=29276314&myOlePropertyId=1371292&floorPlans=3938392&src=21&rcstdid=MTQ%3d-pGJGpRzZiM8%3d",
          "availability": "available",
          "available_on": "2026-10-24",
          "display_name": "4323",
          "id": 46227700,
          "name": "4323",
          "price": 2703,
          "price_max": 0,
          "remote_listing_id": "RV-A4.1-4323",
          "sqft": 872,
          "unit_rental_id": "p37447354-RV-A4.1-4323",
          "updated_at": "2026-09-14T09:05:26Z",
          "base_price": 2703,
          "total_price": 2703,
          "required_fees": 0,
          "lease_length": 15,
          "available_now": false
        },
        {
          "apply_online_url": "http://reveboulder.securecafe.com/onlineleasing/reve0/oleapplication.aspx?stepname=RentalOptions&UnitID=29276335&myOlePropertyId=1371292&floorPlans=3938392&src=21&rcstdid=MTQ%3d-pGJGpRzZiM8%3d",
          "availability": "available",
          "available_on": "2026-10-08",
          "display_name": "4331",
          "id": 47088652,
          "name": "4331",
          "price": 2881,
          "price_max": 0,
          "remote_listing_id": "RV-A5.1-4331",
          "sqft": 895,
          "unit_rental_id": "p37447354-RV-A5.1-4331",
          "updated_at": "2026-09-14T09:05:26Z",
          "base_price": 2881,
          "total_price": 2881,
          "required_fees": 0,
          "lease_length": 15,
          "available_now": false
        },
        {
          "apply_online_url": "http://reveboulder.securecafe.com/onlineleasing/reve0/oleapplication.aspx?stepname=RentalOptions&UnitID=29276316&myOlePropertyId=1371292&floorPlans=3938392&src=21&rcstdid=MTQ%3d-pGJGpRzZiM8%3d",
          "availability": "available",
          "available_on": "2026-11-13",
          "display_name": "4422",
          "id": 47844486,
          "name": "4422",
          "price": 2778,
          "price_max": 0,
          "remote_listing_id": "RV-A4.1-4422",
          "sqft": 872,
          "unit_rental_id": "p37447354-RV-A4.1-4422",
          "updated_at": "2026-09-14T09:05:32Z",
          "base_price": 2778,
          "total_price": 2778,
          "required_fees": 0,
          "lease_length": 15,
          "available_now": false
        }
      ]
    },
    "3270": {
      "bath": 1,
      "bed": 1,
      "id": 10195808,
      "name": "A9",
      "photos": [
        {
          "id": "7dd9e3c780fc84601a7d5925ab0569d8",
          "type": "rectangle"
        }
      ],
      "price": 3270,
      "price_max": 0,
      "remote_listing_id": "3938396",
      "sqft": 1062,
      "sqft_max": 1090,
      "units": [
        {
          "apply_online_url": "http://reveboulder.securecafe.com/onlineleasing/reve0/oleapplication.aspx?stepname=RentalOptions&UnitID=29276337&myOlePropertyId=1371292&floorPlans=3938396&src=21&rcstdid=MTQ%3d-pGJGpRzZiM8%3d",
          "availability": "available",
          "available_on": "2026-11-07",
          "display_name": "4132",
          "id": 48471463,
          "name": "4132",
          "price": 3270,
          "price_max": 0,
          "remote_listing_id": "RV-A7.1-4132",
          "sqft": 1090,
          "unit_rental_id": "p37447354-RV-A7.1-4132",
          "updated_at": "2026-09-14T09:06:13Z",
          "base_price": 3270,
          "total_price": 3270,
          "required_fees": 0,
          "lease_length": 14,
          "available_now": false
        }
      ]
    },
    "3711": {
      "bath": 2,
      "bed": 2,
      "id": 10195812,
      "name": "B5",
      "photos": [
        {
          "id": "8bdc9f50914e76a0c2114ee2d3af2896",
          "type": "rectangle"
        }
      ],
      "price": 3711,
      "price_max": 0,
      "remote_listing_id": "3938403",
      "sqft": 1193,
      "sqft_max": 1211,
      "units": [
        {
          "apply_online_url": "http://reveboulder.securecafe.com/onlineleasing/reve0/oleapplication.aspx?stepname=RentalOptions&UnitID=29276370&myOlePropertyId=1371292&floorPlans=3938403&src=21&rcstdid=MTQ%3d-pGJGpRzZiM8%3d",
          "availability": "available",
          "available_on": "2026-10-07",
          "display_name": "4334",
          "id": 48220500,
          "name": "4334",
          "price": 3711,
          "price_max": 0,
          "remote_listing_id": "RV-B1.2-4334",
          "sqft": 1193,
          "unit_rental_id": "p37447354-RV-B1.2-4334",
          "updated_at": "2026-09-14T09:06:12Z",
          "base_price": 3711,
          "total_price": 3711,
          "required_fees": 0,
          "lease_length": 15,
          "available_now": false
        }
      ]
    },
    "4096": {
      "bath": 1.5,
      "bed": 1,
      "id": 10195806,
      "name": "LW1",
      "photos": [
        {
          "id": "47310318e906b50f2a87a8fa09fd1c25",
          "type": "rectangle"
        }
      ],
      "price": 4096,
      "price_max": 0,
      "remote_listing_id": "3955331",
      "sqft": 1732,
      "sqft_max": 2122,
      "units": [
        {
          "apply_online_url": "http://reveboulder.securecafe.com/onlineleasing/reve0/oleapplication.aspx?stepname=RentalOptions&UnitID=29276383&myOlePropertyId=1371292&floorPlans=3955331&src=21&rcstdid=MTQ%3d-pGJGpRzZiM8%3d",
          "availability": "available",
          "available_on": "2026-09-14",
          "display_name": "1103",
          "id": 46303128,
          "name": "1103",
          "price": 4298,
          "price_max": 0,
          "remote_listing_id": "RV-LW1-1103",
          "sqft": 2122,
          "unit_rental_id": "p37447354-RV-LW1-1103",
          "updated_at": "2026-08-14T09:05:13Z",
          "base_price": 4298,
          "total_price": 4298,
          "required_fees": 0,
          "lease_length": 14,
          "available_now": true
        },
        {
          "apply_online_url": "http://reveboulder.securecafe.com/onlineleasing/reve0/oleapplication.aspx?stepname=RentalOptions&UnitID=29276396&myOlePropertyId=1371292&floorPlans=3955331&src=21&rcstdid=MTQ%3d-pGJGpRzZiM8%3d",
          "availability": "available",
          "available_on": "2026-09-30",
          "display_name": "1102",
          "id": 45550985,
          "name": "1102",
          "price": 4096,
          "price_max": 0,
          "remote_listing_id": "RV-LW2-1102",
          "sqft": 1968,
          "unit_rental_id": "p37447354-RV-LW2-1102",
          "updated_at": "2026-09-06T21:37:33Z",
          "base_price": 4096,
          "total_price": 4096,
          "required_fees": 0,
          "lease_length": 14,
          "available_now": false
        }
      ]
    },
    "4919": {
      "bath": 2.5,
      "bed": 2,
      "id": 10195834,
      "name": "TH2",
      "photos": [
        {
          "id": "d3ad76c29c558bee4cc9808311eb946f",
          "type": "rectangle"
        }
      ],
      "price": 4919,
      "price_max": 0,
      "remote_listing_id": "3955441",
      "sqft": 1765,
      "sqft_max": 2153,
      "units": [
        {
          "apply_online_url": "http://reveboulder.securecafe.com/onlineleasing/reve0/oleapplication.aspx?stepname=RentalOptions&UnitID=29276415&myOlePropertyId=1371292&floorPlans=3955441&src=21&rcstdid=MTQ%3d-pGJGpRzZiM8%3d",
          "availability": "available",
          "available_on": "2026-09-08",
          "display_name": "4144",
          "id": 47560420,
          "name": "4144",
          "price": 4919,
          "price_max": 0,
          "remote_listing_id": "RV-TH1B-4144",
          "sqft": 1800,
          "unit_rental_id": "p37447354-RV-TH1B-4144",
          "updated_at": "2026-09-10T09:30:50Z",
          "base_price": 4919,
          "total_price": 4919,
          "required_fees": 0,
          "lease_length": 12,
          "available_now": true
        }
      ]
    },
    "5150": {
      "bath": 2.5,
      "bed": 2,
      "id": 10195803,
      "name": "LW2",
      "photos": [
        {
          "id": "c8ddd7f4ea6694314b4a25f1b59c54eb",
          "type": "rectangle"
        }
      ],
      "price": 5150,
      "price_max": 0,
      "remote_listing_id": "3955335",
      "sqft": 2471,
      "sqft_max": 2471,
      "units": [
        {
          "apply_online_url": "http://reveboulder.securecafe.com/onlineleasing/reve0/oleapplication.aspx?stepname=RentalOptions&UnitID=29276397&myOlePropertyId=1371292&floorPlans=3955335&src=21&rcstdid=MTQ%3d-pGJGpRzZiM8%3d",
          "availability": "available",
          "available_on": "2026-08-27",
          "display_name": "1101",
          "id": 44701119,
          "name": "1101",
          "price": 5150,
          "price_max": 0,
          "remote_listing_id": "RV-LW3-1101",
          "sqft": 2471,
          "unit_rental_id": "p37447354-RV-LW3-1101",
          "updated_at": "2026-09-06T21:37:33Z",
          "base_price": 5150,
          "total_price": 5150,
          "required_fees": 0,
          "lease_length": 14,
          "available_now": true
        }
      ]
    }
  },
  "from_url": "https://www.apartmentlist.com/co"
}
```

Each property record includes 30+ structured fields covering listings, amenities, pricing, and location data:

#### Property Identification & Metadata

| Field | Meaning |
|---|---|
| `Rental ID` | Unique ApartmentList identifier for the property |
| `Display Name` | Official name of the apartment community or building |
| `Slug` | URL-friendly property identifier |
| `Formatted Address` | Complete mailing address with city, state, ZIP |
| `Updated At` | Timestamp of last data refresh on ApartmentList |

#### Location & Geography

| Field | Meaning |
|---|---|
| `Latitude` | Geographic latitude coordinate for map placement |
| `Longitude` | Geographic longitude coordinate for map placement |
| `City ID` | ApartmentList's internal city classification ID |
| `County ID` | County identifier for regional analysis |
| `Neighborhood` | Neighborhood or district name within the city |
| `Time Zone Short` | Timezone abbreviation (e.g., MST, EST) |

#### Amenities & Features

| Field | Meaning |
|---|---|
| `Community Amenities` | Building-level amenities (fitness center, pool, parking, etc.) |
| `Unit Amenities` | In-unit features (dishwasher, hardwood floors, A/C, etc.) |
| `Amenities Text` | Searchable text summary of all amenities |
| `Occupancy Types` | Permitted occupancy (individuals, families, pets, etc.) |
| `Office Hours This Week` | Leasing office operating hours |

#### Pricing & Availability

| Field | Meaning |
|---|---|
| `Price Range` | Monthly rent range (e.g., "$800 - $1,200") |
| `Price to Floorplans` | Detailed pricing by floor plan type |
| `Bed Range` | Available bedroom counts (e.g., "0-3 beds") |
| `Units Available` | Number of units currently available for rent |
| `Soonest Available` | Earliest move-in date for available units |
| `Has Rent Special` | Boolean flag if property offers move-in specials |
| `Has Unit Level Availability` | Whether detailed unit-level data is available |
| `Contract` | Lease term options (e.g., month-to-month, 12-month) |

#### Engagement & Reviews

| Field | Meaning |
|---|---|
| `Reviews Value Rating` | Average tenant review score or rating |
| `Nurture Enabled` | Whether ApartmentList can follow up with inquiries |
| `Upsells` | Featured premium listing services applied |

#### Media & Content

| Field | Meaning |
|---|---|
| `All Photos` | Array of all property photo URLs |
| `First Photo` | Primary listing photo URL |
| `Sample Summary` | Brief marketing description of the property |
| `Phone` | Leasing office phone number |

***

### How to Use

1. **Identify search URLs** — Visit ApartmentList.com, navigate to your target state or city (e.g., `apartmentlist.com/co` for all Colorado properties), and copy the URL.

2. **Configure parameters** — Set `max_items_per_url` based on your needs (higher values = more data, longer runtime). Default is `20`; use `200` for comprehensive market analysis.

3. **Enable error tolerance** — Set `ignore_url_failures: true` to allow the run to continue if a page becomes temporarily unavailable.

4. **Execute the scraper** — Start the run and monitor progress in the logs.

5. **Export & analyze** — Download results as JSON or CSV for import into spreadsheets, databases, or visualization tools.

**Best practices:**

- Use city-level URLs for targeted analysis (faster, more relevant results)
- For bulk regional scraping, break into separate runs by state to manage data volume
- Combine `Price to Floorplans` with `Bed Range` to segment properties by type and cost

***

### Use Cases & Business Value

- **Competitive pricing analysis** — Monitor rent trends and competitor listings in real time
- **Investment research** — Identify underpriced properties or emerging markets
- **Market reports** — Generate dashboards showing availability, pricing, and amenity trends
- **Portfolio benchmarking** — Compare your properties against local comparables
- **Affordability studies** — Research rental costs by neighborhood, amenities, and occupancy type

The ApartmentList Property Scraper eliminates hours of manual data gathering, enabling data-driven decisions about rental markets, investment opportunities, and pricing strategies.

***

### Conclusion

The **ApartmentList Property Search Scraper** is a powerful tool for anyone needing accurate, structured rental property data. Whether you're an investor analyzing markets, a researcher studying affordability, or a developer building a rental platform, this scraper delivers reliable, comprehensive data at scale. Extract, analyze, and act on ApartmentList data faster than ever.

# Actor input Schema

## `urls` (type: `array`):

Add the URLs of the property list urls you want to scrape. You can paste URLs one by one, or use the Bulk edit section to add a prepared list.

## `ignore_url_failures` (type: `boolean`):

If true, the scraper will continue running even if some URLs fail to be scraped.

## `max_items_per_url` (type: `integer`):

The maximum number of items to scrape per URL.

## Actor input object example

```json
{
  "urls": [
    "https://www.apartmentlist.com/co"
  ],
  "ignore_url_failures": true,
  "max_items_per_url": 20
}
```

# Actor output Schema

## `results` (type: `string`):

No description

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "urls": [
        "https://www.apartmentlist.com/co"
    ],
    "ignore_url_failures": true,
    "max_items_per_url": 20
};

// Run the Actor and wait for it to finish
const run = await client.actor("stealth_mode/apartmentlist-property-search-scraper").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {
    "urls": ["https://www.apartmentlist.com/co"],
    "ignore_url_failures": True,
    "max_items_per_url": 20,
}

# Run the Actor and wait for it to finish
run = client.actor("stealth_mode/apartmentlist-property-search-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
for item in client.dataset(run.default_dataset_id).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "urls": [
    "https://www.apartmentlist.com/co"
  ],
  "ignore_url_failures": true,
  "max_items_per_url": 20
}' |
apify call stealth_mode/apartmentlist-property-search-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,stealth_mode/apartmentlist-property-search-scraper"
        }
    }
}
```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/iqbEiedBsua1HVjRg/builds/cLoSUTof1ubsICurf/openapi.json
