# Land.com Scraper (`rigelbytes/landdotcom-scraper`) Actor

Scrape UNLIMITED listings from Land.com. Easily get property titles, prices, images, brokers, and more by zip code. Supports for sale, rent, and sold listings. Fast, reliable, and proxy-enabled scraping made simple.

- **URL**: https://apify.com/rigelbytes/landdotcom-scraper.md
- **Developed by:** [Rigel Bytes](https://apify.com/rigelbytes) (community)
- **Categories:** Lead generation, Real estate, Developer tools
- **Stats:** 24 total users, 0 monthly users, 96.8% runs succeeded, 1 bookmarks
- **User rating**: No ratings yet

## Pricing

$10.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.

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

## What's an Apify Actor?

Actors are a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
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.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/platform/integrations/mcp.md).

If your project is in a different language, use 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

## Land.com Scraper

The **Land.com Scraper** is designed to scrape property listings from [Land.com](https://www.land.com). It supports scraping listings for properties that are for sale, or sold, based on the provided input parameters.
For just **$15/month**, you can extract **UNLIMITED Listings** with ease.

### Features

- Scrape property listings by zip codes.
  - URL of the primary image of the property.
  - Title of the property listing.
  - URL of the property listing.
  - Price of the property.
  - Price per acre.
  - Name of the broker company.
  - URL of the broker's profile.
  - And much more...
- Supports different listing types: `for_sale`, `for_rent`, and `sold`.
- Handles pagination to retrieve all available listings.
- Uses rotating proxies for anonymity and reliability.
- Automatically retries failed requests with exponential backoff.

### Pricing

- **Unlimited Listings**: Only **$15/month**.
- No hidden fees or limits on usage.

### Input

| Field          | Type   | Description                                                  | Required | Default Value |
| -------------- | ------ | ------------------------------------------------------------ | -------- | ------------- |
| `zip_codes`    | Array  | List of zip codes to scrape.                                 | Yes      | N/A           |
| `proxy`        | String | Rotating proxy URL.                                          | No       | None          |
| `listing_type` | String | Type of listings to scrape (`for_sale`, `for_rent`, `sold`). | No       | `for_sale`    |

#### Example Input

```json
{
  "zip_codes": ["72076"]
}
````

### Why Choose This Scraper?

- **Affordable**: Unlimited scraping for just $15/month.
- **Comprehensive**: Extracts all details
- **Easy to Use**: Simple setup and integration with the Apify platform.
- **Reliable**: Built with retry mechanisms to handle network issues.

***

### Recommended Proxy Providers

- ## **Shifter**

  - Reliable residential proxies all over the world.
  - Cheap rates
  - [Order Shifter Now](https://shifter.io/r/YoBB/order)
  - Get 10% Off any product, use coupan `rigelbytes-YoBB`.

- ## **OxyLabs**

  - **100M+ Proxies**
  - Fastest proxies in the market
  - Real profile, human-like Residential IPs
  - Quality assurance framework for most reliable IPs
  - [Get Proxies](https://oxylabs.go2cloud.org/aff_c?offer_id=7\&aff_id=1366\&url_id=7)

- ## **DataImpulse**

  - Covers **200+ Counties**
  - Reliable Residential Proxies for just $1/GB
  - [Get Residential Proxies](https://dataimpulse.com/?aff=89421)

### [![Learn More About Proxies](https://img.shields.io/badge/Learn_More-About_Proxies-blue?style=for-the-badge)](#understanding-proxies)

### 🙌 Why Buy Through Our Affiliate Link?

- Exclusive Deals: Some providers may offer special discounts or bonuses when you use our link.
- Support Our Work: Each purchase helps us maintain and improve the tools and services we provide.
- No Extra Cost: You pay the same price, but part of it goes to supporting our efforts.

#### Running via Apify Console

You can run this actor from the Apify Console by providing the necessary input parameters.

#### Running via API

You can trigger this actor using the Apify API, passing the required input in the request body.

### API Request Example (Python)

```shell
from apify_client import ApifyClient

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

## Prepare the Actor input
run_input = {
    {
  "zip_codes": ["72076"]
}

}

## Run the Actor and wait for it to finish
run = client.actor("rigelbytes/landdotcom-scraper").call(run_input=run_input)


```

### JavaScript

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

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

// Prepare Actor input
const input = {
    {
      "zip_codes": ["72076"]
  }
};

(async () => {
    // Run the Actor and wait for it to finish
    const run = await client.actor("rigelbytes/landdotcom-scraper").call(input);

})();

```

### Running with cURL

```shell
## Set API token
API_TOKEN=<YOUR_API_TOKEN>

## Prepare Actor input
cat > input.json <<'EOF'
{
  {
    "zip_codes": ["72076"]
  }
}
EOF

## Run the Actor
curl "https://api.apify.com/v2/acts/rigelbytes/landdotcom-scraper/runs?token=$API_TOKEN" \
  -X POST \
  -d @input.json \
  -H 'Content-Type: application/json'

```

- ## Output
  ![Output](https://raw.githubusercontent.com/faizanalii/apify-images/refs/heads/main/LandDotCom-ezgif.com-video-to-gif-converter.gif)

```json
[
  {
    "accountId": 3204066,
    "acres": 87.79,
    "acresDisplay": "87.8 acres",
    "adTargetingCountyId": 5548,
    "address": "5827 & 5837 Pridmore Rd, Lot#WP001",
    "auctionDate": "0001-01-01T00:00:00",
    "baths": 0,
    "bathsDisplay": "",
    "bedsDisplay": "",
    "beds": 0,
    "brokerCanonicalUrl": "https://www.land.com/member/jeff-hodge/3204066/",
    "brokerCompany": "Whitetail Properties Real Estate",
    "brokerName": "Jeff Hodge",
    "brokerPhone": null,
    "canonicalUrl": "https://www.land.com/property/5827-%26-5837-pridmore-rd-lotnumber-wp001-jacksonville-arkansas-72076/23302415/",
    "city": "Jacksonville",
    "cityID": 13082,
    "companyLogoDocumentId": 0,
    "county": "Pulaski County",
    "countyId": 5548,
    "countyLabel": "County",
    "description": "Secluded estate with two custom homes, pasture, timber, wildlife, and endless charm. Nestled in total privacy, this exceptional property offers the perfect blend of rustic luxury and natural beauty. At the heart of the estate sits a stunning 3,500 SF",
    "encodedBoundaryPoints": "",
    "executiveSummary": null,
    "externalSourceId": null,
    "halfBaths": 0,
    "halfBathsDisplay": null,
    "hasCustomMap": true,
    "hasHouse": false,
    "hasVideo": false,
    "hasVirtualTour": false,
    "homesqft": 0,
    "homesqftDisplay": "",
    "imageAltTextDisplay": "Property for sale in Pulaski County, Arkansas",
    "imageCount": 30,
    "imageIds": null,
    "insertDate": "2025-04-23T23:38:26.477",
    "id": 23302415,
    "isALC": false,
    "isCourtesy": false,
    "isDiamond": false,
    "isFirstFreeListing": false,
    "isGold": false,
    "isHeadlineAd": false,
    "isLiked": false,
    "isPlatinum": false,
    "isShowcase": false,
    "lafPropertyId": 37336792,
    "lake": null,
    "lastUpdated": "2025-04-23T23:38:26.477",
    "latitude": 34.9216,
    "listHubListingKey": null,
    "listingLevel": 30,
    "listingLevelTitle": "Signature Partner",
    "longitude": -92.1008,
    "lwPropertyId": 422706911,
    "onMarketDate": "0001-01-01T00:00:00",
    "parentAccountId": 25449,
    "partnerId": 0,
    "portraitDocumentId": 5331902137,
    "price": 1499900,
    "priceChangeAmount": 0,
    "priceChangeDate": "0001-01-01T00:00:00",
    "priceChangePercentage": 0,
    "priceDisplay": "$1,499,900",
    "pricePerAcre": 17085.09,
    "propertyTypes": 14,
    "propertyTypesLabel": "Ranches, Recreational Property, Residential Property",
    "regionId": 15,
    "salesDate": "0001-01-01T00:00:00",
    "salesPrice": 0,
    "schemaData": "{\"@context\":\"http://schema.org\",\"@type\":\"Residence\",\"name\":\"5827 & 5837 Pridmore Rd, Lot#WP001, Jacksonville, AR, 72076\",\"description\":\"Secluded estate with two custom homes, pasture, timber, wildlife, and endless charm. Nestled in tota\",\"address\":{\"@type\":\"PostalAddress\",\"streetAddress\":\"5827 & 5837 Pridmore Rd, Lot#WP001\",\"addressLocality\":\"Jacksonville\",\"addressRegion\":\"AR\",\"postalCode\":\"72076\"}}",
    "shortPrice": "$1.5M",
    "shortPriceChangeAmount": "$0",
    "siteListingId": 23302415,
    "state": "Arkansas",
    "stateAbbreviation": "AR",
    "stateCode": "AR",
    "stateId": 5,
    "status": 1,
    "thumbnailDocumentId": 5494834051,
    "title": "Secluded Estate With Two Custom Homes, Pasture, Timber, Wildlife",
    "types": ["Ranches", "Recreational Property", "Residential Property"],
    "upgradeLevelId": 0,
    "zip": "72076",
    "image": "https://assets.land.com/resizedimages/600/0/h/80/w/1-5494834051"
  },
  {
    "accountId": 2754817,
    "acres": 0.24,
    "acresDisplay": "0.24 acres",
    "adTargetingCountyId": 5548,
    "address": "",
    "auctionDate": "0001-01-01T00:00:00",
    "baths": 0,
    "bathsDisplay": "",
    "bedsDisplay": "",
    "beds": 0,
    "brokerCanonicalUrl": "https://www.land.com/member/jessica-and-tim-lawler/2754817/",
    "brokerCompany": "Shamrock Point Investments, Inc",
    "brokerName": "Jessica and Tim Lawler",
    "brokerPhone": null,
    "canonicalUrl": "https://www.land.com/property/jacksonville-arkansas-72076/22809861/",
    "city": "Jacksonville",
    "cityID": 13082,
    "companyLogoDocumentId": 0,
    "county": "Pulaski County",
    "countyId": 5548,
    "countyLabel": "County",
    "description": "Seize the opportunity to own this beautiful 0.24-acre parcel located adjacent to 3 Deer Creek Cove in Jacksonville, Arkansas. This prime piece of land offers a serene setting, perfect for building your dream home or investment property. The property ",
    "encodedBoundaryPoints": "",
    "executiveSummary": null,
    "externalSourceId": null,
    "halfBaths": 0,
    "halfBathsDisplay": null,
    "hasCustomMap": false,
    "hasHouse": false,
    "hasVideo": false,
    "hasVirtualTour": false,
    "homesqft": 0,
    "homesqftDisplay": "",
    "imageAltTextDisplay": "Property for sale in Pulaski County, Arkansas",
    "imageCount": 15,
    "imageIds": null,
    "insertDate": "2025-03-06T10:56:49.73",
    "id": 22809861,
    "isALC": false,
    "isCourtesy": false,
    "isDiamond": false,
    "isFirstFreeListing": false,
    "isGold": false,
    "isHeadlineAd": false,
    "isLiked": false,
    "isPlatinum": false,
    "isShowcase": false,
    "lafPropertyId": 36844238,
    "lake": null,
    "lastUpdated": "2025-04-22T11:13:55.333",
    "latitude": 34.87642,
    "listHubListingKey": null,
    "listingLevel": 30,
    "listingLevelTitle": "Signature Partner",
    "longitude": -92.18122,
    "lwPropertyId": 422214357,
    "onMarketDate": "0001-01-01T00:00:00",
    "parentAccountId": 0,
    "partnerId": 0,
    "portraitDocumentId": 4099294903,
    "price": 15199,
    "priceChangeAmount": -1800,
    "priceChangeDate": "2025-04-22T11:13:54.7",
    "priceChangePercentage": -0.1059,
    "priceDisplay": "$15,199",
    "pricePerAcre": 63329.17,
    "propertyTypes": 44,
    "propertyTypesLabel": "Recreational Property, Residential Property, Undeveloped Land",
    "regionId": 15,
    "salesDate": "0001-01-01T00:00:00",
    "salesPrice": 0,
    "schemaData": "{\"@context\":\"http://schema.org\",\"@type\":\"Residence\",\"name\":\", Jacksonville, AR, 72076\",\"description\":\"Seize the opportunity to own this beautiful 0.24-acre parcel located adjacent to 3 Deer Creek Cove i\",\"address\":{\"@type\":\"PostalAddress\",\"streetAddress\":\"\",\"addressLocality\":\"Jacksonville\",\"addressRegion\":\"AR\",\"postalCode\":\"72076\"}}",
    "shortPrice": "$15.2K",
    "shortPriceChangeAmount": "-$1.8K",
    "siteListingId": 22809861,
    "state": "Arkansas",
    "stateAbbreviation": "AR",
    "stateCode": "AR",
    "stateId": 5,
    "status": 1,
    "thumbnailDocumentId": 5444299015,
    "title": "Only $4k Down For This Awesome Lot In Jacksonville, AR!",
    "types": [
      "Recreational Property",
      "Residential Property",
      "Undeveloped Land"
    ],
    "upgradeLevelId": 0,
    "zip": "72076",
    "image": "https://assets.land.com/resizedimages/600/0/h/80/w/1-5444299015"
  },
  {
    "accountId": 1604317,
    "acres": 0.29,
    "acresDisplay": "0.29 acres",
    "adTargetingCountyId": 5548,
    "address": "000 Shawnee Place",
    "auctionDate": "0001-01-01T00:00:00",
    "baths": 0,
    "bathsDisplay": "",
    "bedsDisplay": "",
    "beds": 0,
    "brokerCanonicalUrl": "https://www.land.com/member/brenda-white/1604317/",
    "brokerCompany": "Keller Williams Realty LR Branch",
    "brokerName": "Brenda White",
    "brokerPhone": null,
    "canonicalUrl": "https://www.land.com/property/0.29-acre-in-pulaski-county-arkansas/23306646/",
    "city": "Jacksonville",
    "cityID": 13082,
    "companyLogoDocumentId": 0,
    "county": "Pulaski County",
    "countyId": 5548,
    "countyLabel": "County",
    "description": "This spacious lot is ready for your vision. A .29 acre corner lot is ready for you to build your dream home or invest property. Come view today! Agents please see remarks",
    "encodedBoundaryPoints": "",
    "executiveSummary": null,
    "externalSourceId": "196611891|zdnkg6y",
    "halfBaths": 0,
    "halfBathsDisplay": null,
    "hasCustomMap": false,
    "hasHouse": false,
    "hasVideo": false,
    "hasVirtualTour": false,
    "homesqft": 0,
    "homesqftDisplay": "",
    "imageAltTextDisplay": "Property for sale in Pulaski County, Arkansas",
    "imageCount": 5,
    "imageIds": null,
    "insertDate": "2025-04-24T06:19:17.417",
    "id": 23306646,
    "isALC": false,
    "isCourtesy": false,
    "isDiamond": false,
    "isFirstFreeListing": false,
    "isGold": false,
    "isHeadlineAd": false,
    "isLiked": false,
    "isPlatinum": false,
    "isShowcase": false,
    "lafPropertyId": 37341023,
    "lake": null,
    "lastUpdated": "2025-04-24T06:19:17.417",
    "latitude": 34.900314,
    "listHubListingKey": "196611891|zdnkg6y",
    "listingLevel": 21,
    "listingLevelTitle": "Homes",
    "longitude": -92.086075,
    "lwPropertyId": 422711142,
    "onMarketDate": "0001-01-01T00:00:00",
    "parentAccountId": 0,
    "partnerId": 20020,
    "portraitDocumentId": 5495310483,
    "price": 27500,
    "priceChangeAmount": 0,
    "priceChangeDate": "0001-01-01T00:00:00",
    "priceChangePercentage": 0,
    "priceDisplay": "$27,500",
    "pricePerAcre": 94827.59,
    "propertyTypes": 32,
    "propertyTypesLabel": "Undeveloped Land",
    "regionId": 15,
    "salesDate": "0001-01-01T00:00:00",
    "salesPrice": 0,
    "schemaData": "{\"@context\":\"http://schema.org\",\"@type\":\"Residence\",\"name\":\"000 Shawnee Place, Jacksonville, AR, 72076\",\"description\":\"This spacious lot is ready for your vision. A .29 acre corner lot is ready for you to build your dre\",\"address\":{\"@type\":\"PostalAddress\",\"streetAddress\":\"000 Shawnee Place\",\"addressLocality\":\"Jacksonville\",\"addressRegion\":\"AR\",\"postalCode\":\"72076\"}}",
    "shortPrice": "$27.5K",
    "shortPriceChangeAmount": "$0",
    "siteListingId": 23306646,
    "state": "Arkansas",
    "stateAbbreviation": "AR",
    "stateCode": "AR",
    "stateId": 5,
    "status": 1,
    "thumbnailDocumentId": 5495310593,
    "title": "0.29 acres in Pulaski County, AR",
    "types": ["Undeveloped Land"],
    "upgradeLevelId": 0,
    "zip": "72076",
    "image": "https://assets.land.com/resizedimages/600/0/h/80/w/1-5495310593"
  },
  {
    "accountId": 1604317,
    "acres": 0.14,
    "acresDisplay": "0.14 acres",
    "adTargetingCountyId": 5548,
    "address": "182 Pike Avenue",
    "auctionDate": "0001-01-01T00:00:00",
    "baths": 0,
    "bathsDisplay": "",
    "bedsDisplay": "",
    "beds": 0,
    "brokerCanonicalUrl": "https://www.land.com/member/brenda-white/1604317/",
    "brokerCompany": "Keller Williams Realty LR Branch",
    "brokerName": "Brenda White",
    "brokerPhone": null,
    "canonicalUrl": "https://www.land.com/property/0.14-acre-in-pulaski-county-arkansas/23306645/",
    "city": "Jacksonville",
    "cityID": 13082,
    "companyLogoDocumentId": 0,
    "county": "Pulaski County",
    "countyId": 5548,
    "countyLabel": "County",
    "description": "Builder ready residential corner lot in a quiet neighborhood. It is located near schools, shopping, recreation, etc.",
    "encodedBoundaryPoints": "",
    "executiveSummary": null,
    "externalSourceId": "196611190|jpxfvh7",
    "halfBaths": 0,
    "halfBathsDisplay": null,
    "hasCustomMap": false,
    "hasHouse": false,
    "hasVideo": false,
    "hasVirtualTour": false,
    "homesqft": 0,
    "homesqftDisplay": "",
    "imageAltTextDisplay": "Property for sale in Pulaski County, Arkansas",
    "imageCount": 2,
    "imageIds": null,
    "insertDate": "2025-04-24T06:19:17.35",
    "id": 23306645,
    "isALC": false,
    "isCourtesy": false,
    "isDiamond": false,
    "isFirstFreeListing": false,
    "isGold": false,
    "isHeadlineAd": false,
    "isLiked": false,
    "isPlatinum": false,
    "isShowcase": false,
    "lafPropertyId": 37341022,
    "lake": null,
    "lastUpdated": "2025-04-24T06:19:17.35",
    "latitude": 34.86467,
    "listHubListingKey": "196611190|jpxfvh7",
    "listingLevel": 21,
    "listingLevelTitle": "Homes",
    "longitude": -92.105095,
    "lwPropertyId": 422711141,
    "onMarketDate": "0001-01-01T00:00:00",
    "parentAccountId": 0,
    "partnerId": 20020,
    "portraitDocumentId": 5495310483,
    "price": 9900,
    "priceChangeAmount": 0,
    "priceChangeDate": "0001-01-01T00:00:00",
    "priceChangePercentage": 0,
    "priceDisplay": "$9,900",
    "pricePerAcre": 70714.29,
    "propertyTypes": 32,
    "propertyTypesLabel": "Undeveloped Land",
    "regionId": 15,
    "salesDate": "0001-01-01T00:00:00",
    "salesPrice": 0,
    "schemaData": "{\"@context\":\"http://schema.org\",\"@type\":\"Residence\",\"name\":\"182 Pike Avenue, Jacksonville, AR, 72076\",\"description\":\"Builder ready residential corner lot in a quiet neighborhood. It is located near schools, shopping, \",\"address\":{\"@type\":\"PostalAddress\",\"streetAddress\":\"182 Pike Avenue\",\"addressLocality\":\"Jacksonville\",\"addressRegion\":\"AR\",\"postalCode\":\"72076\"}}",
    "shortPrice": "$9.9K",
    "shortPriceChangeAmount": "$0",
    "siteListingId": 23306645,
    "state": "Arkansas",
    "stateAbbreviation": "AR",
    "stateCode": "AR",
    "stateId": 5,
    "status": 1,
    "thumbnailDocumentId": 5495310558,
    "title": "0.14 acres in Pulaski County, AR",
    "types": ["Undeveloped Land"],
    "upgradeLevelId": 0,
    "zip": "72076",
    "image": "https://assets.land.com/resizedimages/600/0/h/80/w/1-5495310558"
  },
  {
    "accountId": 3857538,
    "acres": 1,
    "acresDisplay": "1 acre",
    "adTargetingCountyId": 5542,
    "address": "190 Sherman Hills Road",
    "auctionDate": "0001-01-01T00:00:00",
    "baths": 2,
    "bathsDisplay": "2 baths",
    "bedsDisplay": "3 beds",
    "beds": 3,
    "brokerCanonicalUrl": "https://www.land.com/member/shanekia-rash-parker/3857538/",
    "brokerCompany": "Century 21 Sandstone Real Estate Group",
    "brokerName": "Shanekia Rash-Parker",
    "brokerPhone": null,
    "canonicalUrl": "https://www.land.com/property/190-sherman-hills-road-jacksonville-arkansas-72076/22234901/",
    "city": "Jacksonville",
    "cityID": 13082,
    "companyLogoDocumentId": 0,
    "county": "Lonoke County",
    "countyId": 5542,
    "countyLabel": "County",
    "description": "BOM at no fault of the seller. First-time homebuyers, this is for you! Enter into this newly remodeled home with an oversized living area. Cozy up next to the wood-burning fireplace. Entertain in the eat-in kitchen (which features another sitting are",
    "encodedBoundaryPoints": "",
    "executiveSummary": null,
    "externalSourceId": "187542498|b3y5q3b",
    "halfBaths": 0,
    "halfBathsDisplay": null,
    "hasCustomMap": false,
    "hasHouse": true,
    "hasVideo": false,
    "hasVirtualTour": false,
    "homesqft": 1562,
    "homesqftDisplay": "1,562 sqft",
    "imageAltTextDisplay": "Property for sale in Lonoke County, Arkansas",
    "imageCount": 49,
    "imageIds": null,
    "insertDate": "2024-12-18T08:45:57.05",
    "id": 22234901,
    "isALC": false,
    "isCourtesy": false,
    "isDiamond": false,
    "isFirstFreeListing": false,
    "isGold": false,
    "isHeadlineAd": false,
    "isLiked": false,
    "isPlatinum": false,
    "isShowcase": false,
    "lafPropertyId": 36269279,
    "lake": null,
    "lastUpdated": "2024-12-18T08:45:57.05",
    "latitude": 34.863346,
    "listHubListingKey": "187542498|b3y5q3b",
    "listingLevel": 21,
    "listingLevelTitle": "Homes",
    "longitude": -92.05522,
    "lwPropertyId": 421639399,
    "onMarketDate": "0001-01-01T00:00:00",
    "parentAccountId": 0,
    "partnerId": 20020,
    "portraitDocumentId": 5495391085,
    "price": 134750,
    "priceChangeAmount": 0,
    "priceChangeDate": "0001-01-01T00:00:00",
    "priceChangePercentage": 0,
    "priceDisplay": "$134,750",
    "pricePerAcre": 134750,
    "propertyTypes": 8,
    "propertyTypesLabel": "Residential Property",
    "regionId": 15,
    "salesDate": "0001-01-01T00:00:00",
    "salesPrice": 0,
    "schemaData": "{\"@context\":\"http://schema.org\",\"@type\":\"SingleFamilyResidence\",\"name\":\"190 Sherman Hills Road, Jacksonville, AR, 72076\",\"description\":\"BOM at no fault of the seller. First-time homebuyers, this is for you! Enter into this newly remodel\",\"address\":{\"@type\":\"PostalAddress\",\"streetAddress\":\"190 Sherman Hills Road\",\"addressLocality\":\"Jacksonville\",\"addressRegion\":\"AR\",\"postalCode\":\"72076\"}}",
    "shortPrice": "$135K",
    "shortPriceChangeAmount": "$0",
    "siteListingId": 22234901,
    "state": "Arkansas",
    "stateAbbreviation": "AR",
    "stateCode": "AR",
    "stateId": 5,
    "status": 1,
    "thumbnailDocumentId": 5495391104,
    "title": "1 acre in Lonoke County, AR",
    "types": ["Residential Property"],
    "upgradeLevelId": 0,
    "zip": "72076",
    "image": "https://assets.land.com/resizedimages/600/0/h/80/w/1-5495391104"
  }
]
```

### 🚀 Other Tools by Rigel Bytes

[![Airbnb Images Downloader](https://img.shields.io/badge/Airbnb_Images_Downloader-blue?style=for-the-badge)](https://apify.com/rigelbytes/airbnb-images-downloader)\
A focused Airbnb image scraper that extracts all photos from an Airbnb listing page and packages the listing's image files into a compressed archive. The Act...

[![Zillow Scraper](https://img.shields.io/badge/Zillow_Scraper-green?style=for-the-badge)](https://apify.com/rigelbytes/zillow-scraper)\
A Zillow-focused web scraper that extracts structured property listing data for real estate analysis and monitoring. The Actor crawls Zillow listings to coll...

[![Zillow Detail Scraper](https://img.shields.io/badge/Zillow_Detail_Scraper-orange?style=for-the-badge)](https://apify.com/rigelbytes/zillow-detail-scraper)\
Zillow scraper with customizable proxy support. Extract comprehensive property data, including pricing, images, and location details, using your proxies for better control and efficiency. Check the recommended proxy providers below.

[![Daraz](https://img.shields.io/badge/Daraz-blueviolet?style=for-the-badge)](https://apify.com/rigelbytes/daraz)\
A web scraping Actor that extracts product listings and detailed product and seller data from Daraz.pk (Pakistan ecommerce marketplace) for monitoring and an...

[![Airbnb Listing](https://img.shields.io/badge/Airbnb_Listing-red?style=for-the-badge)](https://apify.com/rigelbytes/airbnb-listing)\
A web-scraping Actor that bulk-extracts structured Airbnb listing data from listing pages: it retrieves listing metadata, descriptive content, property featu...

[![Google Maps Scraper](https://img.shields.io/badge/Google_Maps_Scraper-yellow?style=for-the-badge)](https://apify.com/rigelbytes/google-maps-scraper)\
A Google Maps scraping Actor that extracts structured business profiles and local place intelligence at scale: it crawls Google Maps listings to collect busi...

[![Airbnb Availability Calendar](https://img.shields.io/badge/Airbnb_Availability_Calendar-purple?style=for-the-badge)](https://apify.com/rigelbytes/airbnb-availability-calendar)\
Exports Airbnb listing availability calendars by scraping listing pages and producing structured, per-date calendar data. The Actor extracts date entries and...

[![Instagram Profile Scraper](https://img.shields.io/badge/Instagram_Profile_Scraper-pink?style=for-the-badge)](https://apify.com/rigelbytes/instagram-profile-scraper)\
A web-scraping Actor that extracts detailed Instagram profile and media metadata from profile pages: it retrieves profile-level metrics (follower/following c...

[![Airbnb Reviews](https://img.shields.io/badge/Airbnb_Reviews-cyan?style=for-the-badge)](https://apify.com/rigelbytes/airbnb-reviews)\
A web-scraping Actor that extracts unlimited reviews from Airbnb listings: it crawls listing review pages and produces structured review records containing r...

[![FurnishedFinder](https://img.shields.io/badge/Furnishedfinder-success?style=for-the-badge)](https://apify.com/rigelbytes/furnishedfinder)\
A web-scraping Actor designed to extract large-scale furnished rental data from Furnished Finder: it crawls listing pages to collect listing metadata (proper...

[![Immobilienscout24](https://img.shields.io/badge/Immobilienscout24-important?style=for-the-badge)](https://apify.com/rigelbytes/immobilienscout24)\
A scraper for immobilienscout24.de that extracts large-scale real estate listing data and contact information, optimized for bulk property data collection, i...

[![Airbnb Listing Urls](https://img.shields.io/badge/Airbnb_Listing_Urls-critical?style=for-the-badge)](https://apify.com/rigelbytes/airbnb-listing-urls)\
A web scraper that extracts unlimited Airbnb listings from search queries and returns structured listing metadata for analysis. The Actor crawls Airbnb searc...

[![Instagram Engagement Tool](https://img.shields.io/badge/Instagram_Engagement_Tool-informational?style=for-the-badge)](https://apify.com/rigelbytes/instagram-engagement-tool)\
Analyzes public Instagram profiles by scraping recent posts and profile metadata to compute engagement metrics for images and videos. The Actor extracts prof...

[![Instagram Post Scraper](https://img.shields.io/badge/Instagram_Post_Scraper-9cf?style=for-the-badge)](https://apify.com/rigelbytes/instagram-post-scraper)\
An Instagram scraping Actor that extracts every post from Instagram profiles and produces structured post-level metadata and media assets for social media an...

[![BBB Scraper](https://img.shields.io/badge/Bbb_Scraper-blue?style=for-the-badge)](https://apify.com/rigelbytes/bbb-scraper)\
A web-scraping Actor that extracts detailed business listings from the Better Business Bureau (BBB). It crawls BBB listings and produces structured business ...

[![Linkedin Company Scraper](https://img.shields.io/badge/Linkedin_Company_Scraper-green?style=for-the-badge)](https://apify.com/rigelbytes/linkedin-company-scraper)\
A LinkedIn Company Scraper that extracts structured company profile data from LinkedIn company pages for lead generation and competitive intelligence. The Ac...

[![linkedin-company-details](https://img.shields.io/badge/Linkedin_Company_Details-orange?style=for-the-badge)](https://apify.com/rigelbytes/linkedin-company-details)\
A LinkedIn Company Scraper for extracting comprehensive company profiles and social content from LinkedIn: it scrapes and returns structured company profile ...

[![Instagram Reel Scraper](https://img.shields.io/badge/Instagram_Reel_Scraper-blueviolet?style=for-the-badge)](https://apify.com/rigelbytes/instagram-reel-scraper)\
A web-scraping Actor that extracts all Instagram Reels from public profiles and produces structured reel-level metadata for content analysis, research, and m...

[![Rottentomatoes Reviews Scraper](https://img.shields.io/badge/Rottentomatoes_Reviews_Scraper-red?style=for-the-badge)](https://apify.com/rigelbytes/rottentomatoes-reviews-scraper)\
A web-scraping Apify Actor that extracts user and critic reviews from Rotten Tomatoes pages, producing structured review records for analysis. It crawls unli...

[![Extract Furnished Finder Hosts](https://img.shields.io/badge/Extract_Furnished_Finder_Hosts-yellow?style=for-the-badge)](https://apify.com/rigelbytes/furnished-finder-hosts)\
Scrapes Furnished Finder listings and extracts structured listing and host profile data for furnished rentals, including listing titles, property types, geol...

[![Trustpilot Reviews Scraper](https://img.shields.io/badge/Trustpilot_Reviews_Scraper-purple?style=for-the-badge)](https://apify.com/rigelbytes/trustpilot-reviews)\
A Trustpilot review scraper that collects structured review records and full reviewer profile data at scale. It extracts review content (titles and body text...

[![Furnished Finder Fast](https://img.shields.io/badge/Furnished_Finder_Fast-pink?style=for-the-badge)](https://apify.com/rigelbytes/furnished-finder-fast)\
An Apify Actor for scraping Furnished Finder rental listings and optional host profiles, extracting structured listing data such as photos, textual descripti...

[![Zillow Agents](https://img.shields.io/badge/Zillow_Agents-cyan?style=for-the-badge)](https://apify.com/rigelbytes/zillow-agents)\
A Zillow agent profile scraper that extracts structured agent data from Zillow for location-based queries (city, neighborhood, ZIP). The Actor scrapes agent ...

[![Bayut Scraper](https://img.shields.io/badge/Bayut_Scraper-success?style=for-the-badge)](https://apify.com/rigelbytes/bayut-scraper)\
A web-scraping Actor for extracting structured property listings and market intelligence from Bayut.com (UAE). It crawls Bayut property pages and returns str...

[![dubai-listing-scraper](https://img.shields.io/badge/Dubai_Listing_Scraper-important?style=for-the-badge)](https://apify.com/rigelbytes/dubai-listing-scraper)\
A web scraping Actor for Bayut.com that extracts structured UAE property listing data for sale and rent across Dubai, Abu Dhabi and other Emirates. It progra...

[![Tiktok Comment Scraper](https://img.shields.io/badge/Tiktok_Comment_Scraper-critical?style=for-the-badge)](https://apify.com/rigelbytes/tiktok-comment-scraper)\
A TikTok comment scraping Actor that extracts all comments from TikTok videos given a video URL. It collects commenter metadata (usernames, display names, pr...

[![Tiktok Engagement Rate](https://img.shields.io/badge/Tiktok_Engagement_Rate-informational?style=for-the-badge)](https://apify.com/rigelbytes/tiktok-engagement-rate)\
A TikTok profile scraper that analyzes public TikTok accounts to extract profile metadata and recent video-level interaction metrics and to compute engagemen...

[![Company Service Finder](https://img.shields.io/badge/Company_Service_Finder-9cf?style=for-the-badge)](https://apify.com/rigelbytes/company-service-finder)\
Company Service Finder scrapes business listings from Google Search and Google Maps across cities and states, extracts company websites, names, phone numbers...

[![Website Services Finder](https://img.shields.io/badge/Website_Services_Finder-blue?style=for-the-badge)](https://apify.com/rigelbytes/website-services-finder)\
Website Services Finder extracts and AI-analyzes company services and business information from business websites using web crawling plus large-language and ...

[![Airbnb Address Finder](https://img.shields.io/badge/Airbnb_Address_Finder-green?style=for-the-badge)](https://apify.com/rigelbytes/airbnb-address-finder)\
A web-scraping Apify Actor that bulk-extracts Airbnb listing addresses and comprehensive listing metadata from provided Airbnb listing URLs. It parses listin...

[![Immowelt Scraper](https://img.shields.io/badge/Immowelt_Scraper-orange?style=for-the-badge)](https://apify.com/rigelbytes/immowelt-scraper)\
An Apify Actor that scrapes unlimited real estate listings from immowelt.de and returns structured property data for indexing and analysis. The Actor extract...

[![Propertyfinder Scraper](https://img.shields.io/badge/Propertyfinder_Scraper-blueviolet?style=for-the-badge)](https://apify.com/rigelbytes/propertyfinder-scraper)\
A scraper for propertyfinder.ae that extracts unlimited real estate listings and related metadata at scale. Implements asynchronous concurrency, automatic re...

[![Publix Scraper](https://img.shields.io/badge/Publix_Scraper-red?style=for-the-badge)](https://apify.com/rigelbytes/publix-scraper)\
A web scraping Actor for Publix.com that extracts grocery product data from Publix collection pages using a collection URL and a delivery/pickup location to ...

[![Redfin Scraper](https://img.shields.io/badge/Redfin_Scraper-yellow?style=for-the-badge)](https://apify.com/rigelbytes/redfin-scraper)\
Redfin Scraper extracts large-scale real estate listing data from Redfin search and city pages and returns structured property records for downstream analysi...

[![Instacart Scraper](https://img.shields.io/badge/Instacart_Scraper-purple?style=for-the-badge)](https://apify.com/rigelbytes/instacart-scraper)\
A web-scraping Actor that extracts structured product data from instacart.com using a collection/search keyword combined with a delivery or pickup location; ...

[![Homedepot Scraper](https://img.shields.io/badge/Homedepot_Scraper-pink?style=for-the-badge)](https://apify.com/rigelbytes/homedepot-scraper)\
A web scraper for homedepot.com that crawls collection pages and performs location-aware scraping (delivery or pickup) to extract structured product data. Th...

[![Doctify Scraper](https://img.shields.io/badge/Doctify_Scraper-cyan?style=for-the-badge)](https://apify.com/rigelbytes/doctify-scraper)\
A web scraping Actor that extracts structured healthcare provider and practice data from doctify.com starting from a Doctify search-results URL. The Actor ha...

[![Facebook Ads Scraper](https://img.shields.io/badge/Facebook_Ads_Scraper-success?style=for-the-badge)](https://apify.com/rigelbytes/facebook-ads-scraper)\
Extracts structured ad data from the Facebook Ads Library using a search URL: scrapes ad metadata and creative assets (ad copy, titles, captions), destinatio...

[![Ticketmaster Scraper](https://img.shields.io/badge/Ticketmaster_Scraper-important?style=for-the-badge)](https://apify.com/rigelbytes/ticketmaster-scraper)\
A Ticketmaster-focused web scraper that extracts structured event metadata by location and date range for event monitoring, market research, and entertainmen...

[![Scrape Instagram Creators](https://img.shields.io/badge/Scrape_Instagram_Creators-critical?style=for-the-badge)](https://apify.com/rigelbytes/scrape-instagram-creators)\
Scrape Instagram Creators is an Instagram profile and media scraper that extracts detailed creator profile metadata and media-level information. It captures ...

[![Immowelt Property Scraper](https://img.shields.io/badge/Immowelt_Property_Scraper-informational?style=for-the-badge)](https://apify.com/rigelbytes/immowelt-property-scraper)\
A scraper for immowelt.de (Germany) that harvests large volumes of real estate listings and returns structured property records for analysis. It extracts lis...

[![Immobilienscout24-scraper](https://img.shields.io/badge/Immobilienscout24_Scraper-9cf?style=for-the-badge)](https://apify.com/rigelbytes/immobilienscout24-scraper)\
A web scraping Actor that extracts large volumes of real estate listings and contact information from immobilienscout24.de, focused on German property market...

[![Instagram Creator Stats](https://img.shields.io/badge/Instagram_Creator_Stats-blue?style=for-the-badge)](https://apify.com/rigelbytes/instagram-creator-stats)\
A scraping and analytics Actor that extracts Instagram profile metadata and per-post media details to compute engagement metrics for creator/influencer analy...

[![Etsy Scraper](https://img.shields.io/badge/Etsy_Scraper-green?style=for-the-badge)](https://apify.com/rigelbytes/etsy-scraper)\
A web-scraping Actor that extracts structured product data from Etsy.com from category pages, search results, or individual product list URLs. It crawls list...

[![Rightmove Scraper](https://img.shields.io/badge/Rightmove_Scraper-orange?style=for-the-badge)](https://apify.com/rigelbytes/rightmove-scraper)\
Scrapes Rightmove.co.uk property listings and returns structured property records for real estate data extraction and analysis. The Actor crawls Rightmove se...

[![Outdoorsy Scraper](https://img.shields.io/badge/Outdoorsy_Scraper-blueviolet?style=for-the-badge)](https://apify.com/rigelbytes/outdoorsy-scraper)\
A web scraping Actor that extracts rental listing data from outdoorsy.com search result pages. It processes multiple search result URLs in a single run, issu...

[![Instagram Comment Scraper](https://img.shields.io/badge/Instagram_Comment_Scraper-red?style=for-the-badge)](https://apify.com/rigelbytes/instagram-comment-scraper)\
A web scraping Actor that extracts all comments from Instagram posts and reels given their URLs; it captures commenter metadata (username, display name, prof...

### Understanding Proxies:

When scraping data or browsing anonymously, proxies are essential. They act as intermediaries, masking your original IP address and allowing you to send requests from another location.

#### Why Use Proxies?

- Avoid IP Blocks: By routing requests through proxies, you prevent the target website from recognizing your IP as a scraper or spammer.
- Access Geo-restricted Content: Proxies let you access content or websites restricted by location.
- Enhance Anonymity: Hide your actual IP, ensuring privacy while scraping or browsing.

#### Types of Proxies

1. Residential Proxies
   - Real IP addresses provided by ISPs to home users.
   - They mimic regular users, making them harder to detect.
   - Best for: Long-term, undetectable scraping, and avoiding blocks.
2. Data Center Proxies
   - IP addresses from servers in data centers.
   - Faster and cheaper than residential proxies but easier to detect and block.
   - Best for: High-speed scraping, but with a higher risk of detection.
3. Mobile Proxies
   - IPs provided by mobile carriers (3G/4G/5G networks).
   - Very difficult to detect, as they appear as regular mobile users.
   - Best for: Mobile-related scraping or avoiding sophisticated blocks.

#### Rotating Proxies vs. Straight Proxies

- Rotating Proxies: Every request you send goes through a different proxy, making it harder for websites to detect patterns.
- Straight Proxies: All requests are sent through the same proxy, making it easier to track your IP.

### About Rigel Bytes

Rigel Bytes specializes in web scraping, automation, and data analytics. We help businesses extract and leverage valuable data for informed decision-making.

### Contact Us

Ready to unlock the power of data? Reach out to us at (contact@rigelbytes.com) or [book an appointment](https://cal.com/faizanali/appointments) with us to learn more about how we can help you achieve your data goals.

# Actor input Schema

## `zip_codes` (type: `array`):

List of zip codes to scrape

## `proxyConfiguration` (type: `object`):

Select proxy groups or use your custom proxies

## `listing_type` (type: `string`):

Select Listing Type

## Actor input object example

```json
{
  "zip_codes": [
    "72076"
  ],
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  },
  "listing_type": "for_sale"
}
```

# 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 = {
    "zip_codes": [
        "72076"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("rigelbytes/landdotcom-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 = { "zip_codes": ["72076"] }

# Run the Actor and wait for it to finish
run = client.actor("rigelbytes/landdotcom-scraper").call(run_input=run_input)

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

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

```

## CLI example

```bash
echo '{
  "zip_codes": [
    "72076"
  ]
}' |
apify call rigelbytes/landdotcom-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=rigelbytes/landdotcom-scraper",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Land.com Scraper",
        "description": "Scrape UNLIMITED listings from Land.com. Easily get property titles, prices, images, brokers, and more by zip code. Supports for sale, rent, and sold listings. Fast, reliable, and proxy-enabled scraping made simple.",
        "version": "0.0",
        "x-build-id": "oyE2fL5QW47xCTYdg"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/rigelbytes~landdotcom-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-rigelbytes-landdotcom-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/rigelbytes~landdotcom-scraper/runs": {
            "post": {
                "operationId": "runs-sync-rigelbytes-landdotcom-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/rigelbytes~landdotcom-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-rigelbytes-landdotcom-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "required": [
                    "zip_codes"
                ],
                "properties": {
                    "zip_codes": {
                        "title": "ZipCodes",
                        "type": "array",
                        "description": "List of zip codes to scrape"
                    },
                    "proxyConfiguration": {
                        "title": "Proxy configuration",
                        "type": "object",
                        "description": "Select proxy groups or use your custom proxies",
                        "default": {
                            "useApifyProxy": true,
                            "apifyProxyGroups": [
                                "RESIDENTIAL"
                            ]
                        }
                    },
                    "listing_type": {
                        "title": "Listing Type",
                        "enum": [
                            "for_sale",
                            "for_rent",
                            "sold"
                        ],
                        "type": "string",
                        "description": "Select Listing Type",
                        "default": "for_sale"
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
