Century 21 Real Estate Scraper (US) avatar
Century 21 Real Estate Scraper (US)
Deprecated
View all Actors
This Actor is deprecated

This Actor is unavailable because the developer has decided to deprecate it. Would you like to try a similar Actor instead?

See alternative Actors
Century 21 Real Estate Scraper (US)

Century 21 Real Estate Scraper (US)

mikhail.koviazin/century-21-real-estate-scraper-us

Scrape and download thousands of real estate property listings on Century 21 (US website). Supports search and particular properties URL lists. Extract Century 21 real estate property listings for entire state in 20 minutes. Download the data as HTML table, JSON, CSV, Excel, XML and RSS feed.

The code examples below show how to run the Actor and get its results. To run the code, you need to have an Apify account. Replace <YOUR_API_TOKEN> in the code with your API token, which you can find under Settings > Integrations in Apify Console. Learn more

1# Set API token
2API_TOKEN=<YOUR_API_TOKEN>
3
4# Prepare Actor input
5cat > input.json <<'EOF'
6{
7  "startUrls": [
8    {
9      "url": "https://www.century21.com/real-estate/miami-fl/LCFLMIAMI/?be=6&pr=%7C1000000&ba=4"
10    },
11    {
12      "url": "https://www.century21.com/real-estate/miami-fl/LCFLMIAMI/?pdp=C2183797907"
13    },
14    {
15      "url": "https://www.century21.com/property/15213-sw-118th-ter-miami-fl-33196-C2183797907"
16    }
17  ],
18  "proxy": {
19    "useApifyProxy": true
20  }
21}
22EOF
23
24# Run the Actor using an HTTP API
25# See the full API reference at https://docs.apify.com/api/v2
26curl "https://api.apify.com/v2/acts/mikhail.koviazin~century-21-real-estate-scraper-us/runs?token=$API_TOKEN" \
27  -X POST \
28  -d @input.json \
29  -H 'Content-Type: application/json'
Developer
Maintained by Community