# Land.com Listing Scraper (`moving_beacon-owner1/land-com-listing-scraper`) Actor

Scrapes rural land, farm, and ranch listings from Land.com search pages, returning prices, acreage, beds, baths, addresses, locations, brokers, images, and listing URLs. Supports state-based or custom filtered searches with pagination.

- **URL**: https://apify.com/moving\_beacon-owner1/land-com-listing-scraper.md
- **Developed by:** [Jamshaid Arif](https://apify.com/moving_beacon-owner1) (community)
- **Categories:** Real estate, Automation, Developer tools
- **Stats:** 2 total users, 1 monthly users, 0.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $9.99 / 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/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

## Land.com Listing Scraper

Scrapes rural land, farm and ranch listings from [Land.com](https://www.land.com) (Land Group / CoStar network) search result pages.

### Input

| Field | Default | Description |
| --- | --- | --- |
| `search_url` | `""` | Full Land.com search URL with filters (takes precedence over `state`) |
| `state` | `"Texas"` | US state used to build `https://www.land.com/<State>/all-land/` when `search_url` is empty |
| `max_results` | `40` | Maximum listing records to return (max 1000) |
| `max_pages` | `5` | Maximum search result pages to fetch (max 50) |
| `proxy_url` | `""` | Optional proxy URL; a US residential proxy is strongly recommended |

### Output

```json
{
    "property_id": 12345678,
    "title": "Blankston Road Lot# Wp002",
    "price": 2500000,
    "acres": 459,
    "acres_display": "459 acres",
    "beds": 9,
    "baths": 5,
    "address": "Blankston Road Lot# Wp002",
    "city": "Centerville",
    "county": "Leon",
    "state": "TX",
    "latitude": 31.25,
    "longitude": -95.97,
    "broker_company": "Whitetail Properties Real Estate",
    "broker_url": "https://www.land.com/member/clint-wood/1360034/",
    "url": "https://www.land.com/property/...",
    "page": 1,
    "search_url": "https://www.land.com/Texas/all-land/",
    "raw": { "...full embedded listing payload..." }
}
```

### Data source & auth

Public Land.com search pages; no login or API key. The site sits behind Akamai Bot Manager and **geo-blocks non-US traffic** — every path (even robots.txt) returns HTTP 403 "Access Denied" from non-US IPs. Run from a US IP or set `proxy_url` to a US residential proxy.

Scrape politely (built-in 0.8 s page delay) and review Land.com's Terms of Service before large-scale or commercial use.

# Actor input Schema

## `search_url` (type: `string`):

Full Land.com search URL with any filters, e.g. https://www.land.com/Texas/all-land/Acreage-between-1000-and-10000000/ or https://www.land.com/Louisiana/all-land/over-100000/. Takes precedence over the State field. Leave empty to build the URL from State.

## `state` (type: `string`):

US state to search when no Search URL is given, e.g. Texas or New Mexico. Builds https://www.land.com/<State>/all-land/.

## `max_results` (type: `integer`):

Maximum number of listing records to return.

## `max_pages` (type: `integer`):

Maximum number of search result pages to fetch (paginated via /page-N/).

## `proxy_url` (type: `string`):

Optional proxy URL, e.g. http://user:pass@proxy.example:8000. Land.com geo-blocks non-US IPs and flagged datacenter ranges at the Akamai edge, so a US residential proxy is strongly recommended.

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

Proxy settings for the run. Enable a US-based proxy for the most reliable results, especially for sites that limit non-US or datacenter traffic. Optional — leave off to run directly.

## Actor input object example

```json
{
  "search_url": "",
  "state": "Texas",
  "max_results": 40,
  "max_pages": 5,
  "proxy_url": "",
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

# 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 = {
    "search_url": "",
    "state": "Texas",
    "max_results": 40,
    "max_pages": 5,
    "proxy_url": "",
    "proxyConfiguration": {
        "useApifyProxy": true
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("moving_beacon-owner1/land-com-listing-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 = {
    "search_url": "",
    "state": "Texas",
    "max_results": 40,
    "max_pages": 5,
    "proxy_url": "",
    "proxyConfiguration": { "useApifyProxy": True },
}

# Run the Actor and wait for it to finish
run = client.actor("moving_beacon-owner1/land-com-listing-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 '{
  "search_url": "",
  "state": "Texas",
  "max_results": 40,
  "max_pages": 5,
  "proxy_url": "",
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}' |
apify call moving_beacon-owner1/land-com-listing-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,moving_beacon-owner1/land-com-listing-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/nJHd3VUcYjYC4FhSy/builds/TN69pLyFGZ8yxDftF/openapi.json
