# Land for Sale Nationwide on LoopNet

**Use case:** 

Collects land-for-sale listings across the US from LoopNet's nationwide land search, prefilled for 20 results. Set the US State field to narrow to one state, or add City for an even tighter search.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.loopnet.com/search/land/usa/for-sale/"
    }
  ],
  "searchQuery": "",
  "addresses": [],
  "searchType": "for-sale",
  "State": "none",
  "City": "",
  "maxItems": 20,
  "moreResults": false,
  "includeListingDetails": false,
  "includePortfolioProperties": false,
  "listedInLastDays": 0,
  "monitoringMode": false,
  "enablePriceMonitoring": false,
  "transactionTrackingMode": false,
  "downloadImages": false,
  "maxImages": 10,
  "storeName": "",
  "maxConcurrency": 20,
  "minConcurrency": 1,
  "maxRequestRetries": 8,
  "maxUnblockerRequests": 60,
  "proxy": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "UNBLOCKER"
    ]
  }
}
```

## Output

```json
{
  "propertyId": {
    "label": "Property ID",
    "format": "text"
  },
  "listingUrl": {
    "label": "Listing URL",
    "format": "link"
  },
  "address": {
    "label": "Address",
    "format": "text"
  },
  "city": {
    "label": "City",
    "format": "text"
  },
  "region": {
    "label": "State/Region",
    "format": "text"
  },
  "country": {
    "label": "Country",
    "format": "text"
  },
  "propertyType": {
    "label": "Property Type",
    "format": "text"
  },
  "transactionType": {
    "label": "Transaction Type",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "text"
  },
  "brokerCompany": {
    "label": "Broker Company",
    "format": "text"
  },
  "sourceCountry": {
    "label": "Source",
    "format": "text"
  },
  "scrapedAt": {
    "label": "Scraped At",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [LoopNet Commercial Property Scraper](https://apify.com/parsebird/loopnet-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/parsebird/loopnet-scraper.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/parsebird/loopnet-scraper.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
