# Commercial Real Estate Listings for Market Research

**Use case:** 

Collect Crexi commercial property listings for market research, including property names, addresses, brokerages, prices, sizes, property types, statuses, and listing URLs. Build structured CRE datasets to compare inventory, pricing, and opportunities across selected markets.

## Input

```json
{
  "searchUrls": [
    "https://www.crexi.com/properties?placeIds%5B%5D=ChIJZYIRslSkIIYRA0flgTL3Vck&pageSize=60",
    "https://www.crexi.com/properties?placeIds%5B%5D=ChIJdd4tIuL2QIYRm0WqQ5K7qKw&pageSize=60"
  ],
  "maxItemsPerUrl": 70
}
```

## Output

```json
{
  "id": {
    "label": "Listing ID",
    "format": "text"
  },
  "name": {
    "label": "Property Name",
    "format": "text"
  },
  "description": {
    "label": "Description",
    "format": "text"
  },
  "urlSlug": {
    "label": "URL Slug",
    "format": "text"
  },
  "status": {
    "label": "Status",
    "format": "text"
  },
  "types": {
    "label": "Property Types",
    "format": "text"
  },
  "investmentType": {
    "label": "Investment Type",
    "format": "text"
  },
  "squareFootage": {
    "label": "Square Footage",
    "format": "text"
  },
  "lotSizeAcres": {
    "label": "Lot Size (Acres)",
    "format": "text"
  },
  "askingPrice": {
    "label": "Asking Price",
    "format": "text"
  },
  "pricePerSqFt": {
    "label": "Price per Sq Ft",
    "format": "text"
  },
  "pricePerAcreLand": {
    "label": "Price per Acre Land",
    "format": "text"
  },
  "address": {
    "label": "Street Address",
    "format": "text"
  },
  "city": {
    "label": "City",
    "format": "text"
  },
  "county": {
    "label": "County",
    "format": "text"
  },
  "state": {
    "label": "State Name",
    "format": "text"
  },
  "stateCode": {
    "label": "State Code",
    "format": "text"
  },
  "zip": {
    "label": "Zip Code",
    "format": "text"
  },
  "fullAddress": {
    "label": "Full Address",
    "format": "text"
  },
  "latitude": {
    "label": "Latitude",
    "format": "text"
  },
  "longitude": {
    "label": "Longitude",
    "format": "text"
  },
  "brokerageName": {
    "label": "Brokerage Name",
    "format": "text"
  },
  "brokerTeamLogoUrl": {
    "label": "Broker Logo",
    "format": "image"
  },
  "thumbnailUrl": {
    "label": "Property Photo",
    "format": "image"
  },
  "numberOfImages": {
    "label": "Number of Images",
    "format": "text"
  },
  "numberOfGalleryItems": {
    "label": "Gallery Items",
    "format": "text"
  },
  "hasVideo": {
    "label": "Has Video",
    "format": "boolean"
  },
  "hasVirtualTour": {
    "label": "Has Virtual Tour",
    "format": "boolean"
  },
  "hasOM": {
    "label": "Has OM",
    "format": "boolean"
  },
  "hasFlyer": {
    "label": "Has Flyer",
    "format": "boolean"
  },
  "activatedOn": {
    "label": "Activated On",
    "format": "text"
  },
  "updatedOn": {
    "label": "Updated On",
    "format": "text"
  },
  "isInOpportunityZone": {
    "label": "Opportunity Zone",
    "format": "boolean"
  },
  "isNew": {
    "label": "New Listing",
    "format": "boolean"
  }
}
```

## About this Actor

This example demonstrates how to use [Crexi Scraper - Low-cost💲🔥🏢🔎](https://apify.com/delectable_incubator/crexi-scraper-low-cost.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/delectable_incubator/crexi-scraper-low-cost.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/delectable_incubator/crexi-scraper-low-cost.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`).
