# Rightmove Glasgow Property Market Scraper

**Use case:** 

Scrape Glasgow flats and terraced properties from Rightmove, capturing prices, bedrooms, bathrooms, tenure, coordinates and estate agent details.

## Input

```json
{
  "location": "Glasgow",
  "flats_and_apartments": true,
  "bungalows": false,
  "detached_houses": false,
  "semi_detached_houses": false,
  "terraced_houses": true,
  "lands": false,
  "park_homes": false,
  "min_price": "0",
  "max_price": "0",
  "min_bedrooms": "0",
  "max_bedrooms": "0",
  "min_bathrooms": "0",
  "max_bathrooms": "0",
  "search_radius": "0",
  "include_under_offer_and_stc": false,
  "max_results": "300",
  "max_days_since_added": "0"
}
```

## Output

```json
{
  "id": {
    "label": "Property ID",
    "format": "number"
  },
  "bedrooms": {
    "label": "Bedrooms",
    "format": "number"
  },
  "bathrooms": {
    "label": "Bathrooms",
    "format": "number"
  },
  "number_of_floor_plants": {
    "label": "Number of Floor Plants",
    "format": "number"
  },
  "description": {
    "label": "Description",
    "format": "string"
  },
  "address": {
    "label": "Address",
    "format": "string"
  },
  "country_code": {
    "label": "Country Code",
    "format": "string"
  },
  "latitude": {
    "label": "Latitude",
    "format": "number"
  },
  "longitude": {
    "label": "Longitude",
    "format": "number"
  },
  "property_sub_type": {
    "label": "Property Sub Type",
    "format": "string"
  },
  "tenure": {
    "label": "Tenure",
    "format": "object"
  },
  "listing_update": {
    "label": "Listing Update",
    "format": "object"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "currency_code": {
    "label": "Currency Code",
    "format": "string"
  },
  "estate_agent_branch": {
    "label": "Estate Agent Branch",
    "format": "object"
  },
  "transaction_type": {
    "label": "Transaction Type",
    "format": "string"
  },
  "property_url": {
    "label": "Property URL",
    "format": "url"
  },
  "contact_url": {
    "label": "Contact URL",
    "format": "url"
  },
  "first_published_at": {
    "label": "First Published At",
    "format": "string"
  },
  "updated_at": {
    "label": "Updated At",
    "format": "string"
  },
  "property_images": {
    "label": "Property Images",
    "format": "array"
  }
}
```

## About this Actor

This example demonstrates how to use [Rightmove Properties Discovery By Location](https://apify.com/datacach/rightmove-properties-discovery-by-location.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/datacach/rightmove-properties-discovery-by-location.md) 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/datacach/rightmove-properties-discovery-by-location.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).
