# Realtor.com Property Listings API by US City

**Use case:** 

Search Realtor.com sale listings by city and export price, rooms, area, agent contact and geo fields in a 40-field normalized schema.

## Input

```json
{
  "max_results": 50,
  "country": "United States",
  "location": "Chicago, IL",
  "listing_type": "for_sale"
}
```

## Output

```json
{
  "cover_image": {
    "label": "Cover Image",
    "format": "string"
  },
  "image_urls": {
    "label": "Image URLs",
    "format": "array"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "description": {
    "label": "Description",
    "format": "string"
  },
  "listing_id": {
    "label": "Listing ID",
    "format": "string"
  },
  "mls_id": {
    "label": "MLS ID",
    "format": "string"
  },
  "listing_type": {
    "label": "Listing Type",
    "format": "string"
  },
  "availability": {
    "label": "Availability",
    "format": "string"
  },
  "market_type": {
    "label": "Market Type",
    "format": "string"
  },
  "property_type": {
    "label": "Property Type",
    "format": "string"
  },
  "subtype": {
    "label": "Subtype",
    "format": "string"
  },
  "category": {
    "label": "Category",
    "format": "string"
  },
  "business_type": {
    "label": "Business Type",
    "format": "string"
  },
  "price": {
    "label": "Price",
    "format": "object"
  },
  "rooms": {
    "label": "Rooms",
    "format": "object"
  },
  "area": {
    "label": "Area",
    "format": "object"
  },
  "land": {
    "label": "Land",
    "format": "object"
  },
  "location": {
    "label": "Location",
    "format": "string"
  },
  "address": {
    "label": "Address",
    "format": "string"
  },
  "geo": {
    "label": "Geo",
    "format": "object"
  },
  "country": {
    "label": "Country",
    "format": "string"
  },
  "building": {
    "label": "Building",
    "format": "object"
  },
  "dates": {
    "label": "Dates",
    "format": "object"
  },
  "posted_time": {
    "label": "Posted Time",
    "format": "string"
  },
  "fees": {
    "label": "Fees",
    "format": "object"
  },
  "media": {
    "label": "Media",
    "format": "object"
  },
  "open_houses": {
    "label": "Open Houses",
    "format": "array"
  },
  "features": {
    "label": "Features",
    "format": "array"
  },
  "amenities": {
    "label": "Amenities",
    "format": "array"
  },
  "details": {
    "label": "Details",
    "format": "array"
  },
  "reviews": {
    "label": "Reviews",
    "format": "object"
  },
  "policies": {
    "label": "Policies",
    "format": "object"
  },
  "units": {
    "label": "Units",
    "format": "array"
  },
  "nearby": {
    "label": "Nearby",
    "format": "object"
  },
  "contact": {
    "label": "Contact",
    "format": "object"
  },
  "platform": {
    "label": "Platform",
    "format": "string"
  },
  "source_url": {
    "label": "Source URL",
    "format": "string"
  },
  "official_url": {
    "label": "Official URL",
    "format": "string"
  },
  "processor": {
    "label": "Processor",
    "format": "string"
  },
  "processed_at": {
    "label": "Processed At",
    "format": "string"
  }
}
```

## About this Actor

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


## 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.
This Task's input is already configured above — use it as-is rather than inventing a new one.

- **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 full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/agentx/realtor-property-scraper.md

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).
