# Retail Space for Rent in London, UK

**Use case:** 

Scrapes retail and commercial property listings for rent in London from LoopNet UK, enriched with full listing details, prefilled for 20 results. Swap the URL for another UK city or transaction type, e.g. /for-sale/.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.loopnet.com/search/commercial-property/london-england--united-kingdom/for-rent/"
    }
  ],
  "searchQuery": "",
  "addresses": [],
  "searchType": "for-sale",
  "State": "none",
  "City": "",
  "maxItems": 20,
  "moreResults": false,
  "includeListingDetails": true,
  "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`).
