# HouseSigma Agents Scraper (`automation-lab/housesigma-agents-scraper`) Actor

Extract public HouseSigma realtor profiles, languages, service-area signals, biographies, and transaction summaries for Canadian lead lists.

- **URL**: https://apify.com/automation-lab/housesigma-agents-scraper.md
- **Developed by:** [Stas Persiianenko](https://apify.com/automation-lab) (community)
- **Categories:** Real estate
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

Pay per event

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.
Since this Actor supports Apify Store discounts, the price gets lower the higher subscription plan you have.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## 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.
The best way to integrate Actors is as follows.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js/docs.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python/docs.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/integrations/mcp.md).

If your project is in a different language, use the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

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


# README

## HouseSigma Agents Scraper

Extract public HouseSigma realtor profiles for Canadian real estate lead generation, brokerage research, and proptech enrichment.

### What does HouseSigma Agents Scraper do?

HouseSigma Agents Scraper collects public realtor profile records from HouseSigma.

It can scan province agent directories.

It can enrich direct profile URLs.

It saves clean structured records to an Apify dataset.

Each record contains the agent name, designation, province, profile URL, avatar URL, languages, biography, transaction counts, top cities, property-type distribution, and scrape timestamp.

### Who is it for?

#### Real estate brokerages

Use it to map HouseSigma-visible agents in Canadian markets.

#### Mortgage teams

Use it to build referral and partnership lead lists.

#### Proptech companies

Use it to enrich realtor databases with public profile signals.

#### Recruiting teams

Use it to find active agents by province and service area.

#### Market analysts

Use it to compare agent coverage across cities and property types.

### Why use this actor?

It is source specific.

It uses HouseSigma profile URLs and directory filters.

It returns one row per agent.

It includes profile enrichment when available.

It avoids browser overhead by using public web-app API responses.

It supports small lead-list runs and larger directory scans.

### What data can it extract?

| Field | Description |
| --- | --- |
| `agentId` | HouseSigma public agent ID |
| `name` | Agent name |
| `designation` | Broker or sales representative designation |
| `province` | Province code such as ON, BC, AB |
| `slug` | HouseSigma profile slug |
| `profileUrl` | Public HouseSigma profile URL |
| `avatarUrl` | Agent headshot URL when available |
| `languages` | Languages listed on the profile |
| `about` | Public biography/about text |
| `homesSold` | Homes sold summary count |
| `activeListings` | Active listings summary count |
| `homesToured` | Homes toured summary count |
| `topCities` | Top cities by transaction distribution |
| `propertyTypes` | Property-type distribution |
| `contactMessage` | Public profile contact message template |
| `metaTitle` | HouseSigma profile meta title |
| `metaDescription` | HouseSigma profile meta description |
| `source` | Source URL used for the record |
| `scrapedAt` | ISO timestamp |

### How much does it cost to scrape HouseSigma agents?

The actor uses pay-per-event pricing.

There is a small start charge per run.

There is a per-agent charge for each saved profile record.

Use `maxItems` to control cost.

Start with a small run such as 25 agents.

Scale up after checking the output.

### How to scrape HouseSigma agent profiles

1. Open the actor on Apify.

2. Choose one or more provinces.

3. Keep `areas` as `all` for a broad province directory scan.

4. Add direct `startUrls` if you need specific profiles.

5. Set `maxItems` to your desired limit.

6. Leave `enrichProfiles` enabled for biographies and counts.

7. Run the actor.

8. Export the dataset as JSON, CSV, Excel, or API.

### Input options

#### `startUrls`

Direct HouseSigma agent profile URLs.

Example: `https://housesigma.com/on/agents/ben-ghasemian/`.

#### `provinces`

Province codes to scan.

Examples: `ON`, `BC`, `AB`.

#### `areas`

HouseSigma area filter slugs.

Use `all` for the default directory view.

Use `*` to try all known area filters.

#### `languages`

HouseSigma language filter values.

Use `all` for any language.

Use `*` to try all known language filters.

#### `maxItems`

Maximum unique agent records to save.

#### `enrichProfiles`

Fetch public profile details for each directory result.

Disable it for faster directory-only scans.

### Output example

```json
{
  "agentId": 81,
  "name": "Ben Ghasemian",
  "designation": "Broker",
  "province": "ON",
  "profileUrl": "https://housesigma.com/on/agents/ben-ghasemian/",
  "languages": ["English", "Farsi"],
  "homesSold": 59,
  "activeListings": 2,
  "homesToured": 159
}
````

### Tips for best results

Use province scans for discovery.

Use direct URLs for known agents.

Use a low `maxItems` for your first test.

Use enriched profiles for lead scoring.

Use directory-only mode when you only need names and profile URLs.

### Integrations

Send results to Google Sheets with Apify integrations.

Export CSV files for CRM upload.

Connect dataset webhooks to enrichment pipelines.

Use the Apify API to schedule recurring market scans.

Combine the output with email verification or CRM deduplication tools.

### API usage with Node.js

```js
import { ApifyClient } from 'apify-client';

const client = new ApifyClient({ token: process.env.APIFY_TOKEN });
const run = await client.actor('automation-lab/housesigma-agents-scraper').call({
  provinces: ['ON'],
  areas: ['all'],
  maxItems: 100,
  enrichProfiles: true,
});
console.log(run.defaultDatasetId);
```

### API usage with Python

```python
from apify_client import ApifyClient

client = ApifyClient('YOUR_APIFY_TOKEN')
run = client.actor('automation-lab/housesigma-agents-scraper').call(run_input={
    'provinces': ['ON'],
    'areas': ['all'],
    'maxItems': 100,
    'enrichProfiles': True,
})
print(run['defaultDatasetId'])
```

### API usage with cURL

```bash
curl -X POST 'https://api.apify.com/v2/acts/automation-lab~housesigma-agents-scraper/runs?token=YOUR_APIFY_TOKEN' \
  -H 'Content-Type: application/json' \
  -d '{"provinces":["ON"],"areas":["all"],"maxItems":100,"enrichProfiles":true}'
```

### MCP usage

Use this actor from Claude Desktop or Claude Code through the Apify MCP server.

MCP URL:

`https://mcp.apify.com/?tools=automation-lab/housesigma-agents-scraper`

Claude Code setup command:

```bash
claude mcp add apify-housesigma-agents https://mcp.apify.com/?tools=automation-lab/housesigma-agents-scraper
```

Claude Desktop JSON config:

```json
{
  "mcpServers": {
    "apify-housesigma-agents": {
      "url": "https://mcp.apify.com/?tools=automation-lab/housesigma-agents-scraper"
    }
  }
}
```

Example prompt:

"Scrape 100 HouseSigma agents in Ontario and summarize the top cities represented."

Another prompt:

"Extract this HouseSigma agent profile URL and prepare a CRM-ready JSON record."

### Scheduling

You can schedule the actor daily, weekly, or monthly.

Use scheduled runs for market monitoring.

Use a stable `maxItems` value to keep costs predictable.

### Data quality notes

The actor only returns data available in HouseSigma public responses.

Some agents may not show biographies.

Some agents may not show active listings.

Directory ordering can change.

The actor deduplicates by province and slug during a run.

### Legality

This actor extracts publicly available profile information.

You are responsible for using the data lawfully.

Respect privacy, anti-spam rules, and HouseSigma terms.

Do not use the output for unlawful unsolicited contact.

### FAQ

#### Is this a HouseSigma property listings scraper?

No. This actor focuses on public HouseSigma agent and realtor profile records.

#### Does it require a HouseSigma login?

No. It uses public web-app responses available without a user account.

#### Can it find phone numbers and emails?

It returns public biography and profile metadata. Direct phone/email fields are only returned when HouseSigma exposes them in public profile text or responses.

### Troubleshooting

#### Why did I get fewer agents than `maxItems`?

The selected province, area, or language filter may have fewer public directory results.

Try `areas: ["all"]` or add more provinces.

#### Why are some fields empty?

HouseSigma does not display every field for every agent.

Disable enrichment only if you do not need profile detail fields.

#### Can I scrape only one agent?

Yes.

Add the profile URL to `startUrls` and set `maxItems` to `1`.

### Related scrapers

- https://apify.com/automation-lab/realtor-com-agents-scraper

- https://apify.com/automation-lab/realtor-ca-property-listings-scraper

- https://apify.com/automation-lab/zillow-scraper

### Changelog

#### 0.1

Initial private build for HouseSigma public agent profiles.

### Support

Open an Apify issue if a run fails or if HouseSigma changes its public web app responses.

Include your run ID and input.

### Summary

HouseSigma Agents Scraper turns public Canadian realtor profile pages into structured datasets.

Use it for lead lists, recruiting, brokerage coverage, market analysis, and proptech enrichment.

# Actor input Schema

## `startUrls` (type: `array`):

Optional direct HouseSigma profile URLs such as https://housesigma.com/on/agents/ben-ghasemian/.

## `provinces` (type: `array`):

HouseSigma province codes to scan. Supported examples: ON, BC, AB.

## `areas` (type: `array`):

HouseSigma area slugs to scan. Use all for the default province-wide directory or \* to try all known areas.

## `languages` (type: `array`):

Language filter values. Use all for any language or \* to try all known language filters.

## `maxItems` (type: `integer`):

Maximum number of unique agent profile records to save.

## `enrichProfiles` (type: `boolean`):

Fetch each public profile to add biography, languages, transaction summary, top cities, and property-type distribution.

## Actor input object example

```json
{
  "startUrls": [
    {
      "url": "https://housesigma.com/on/agents/ben-ghasemian/"
    }
  ],
  "provinces": [
    "ON"
  ],
  "areas": [
    "all"
  ],
  "languages": [
    "all"
  ],
  "maxItems": 20,
  "enrichProfiles": true
}
```

# Actor output Schema

## `overview` (type: `string`):

No description

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "startUrls": [
        {
            "url": "https://housesigma.com/on/agents/ben-ghasemian/"
        }
    ],
    "provinces": [
        "ON"
    ],
    "areas": [
        "all"
    ],
    "languages": [
        "all"
    ],
    "maxItems": 20,
    "enrichProfiles": true
};

// Run the Actor and wait for it to finish
const run = await client.actor("automation-lab/housesigma-agents-scraper").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {
    "startUrls": [{ "url": "https://housesigma.com/on/agents/ben-ghasemian/" }],
    "provinces": ["ON"],
    "areas": ["all"],
    "languages": ["all"],
    "maxItems": 20,
    "enrichProfiles": True,
}

# Run the Actor and wait for it to finish
run = client.actor("automation-lab/housesigma-agents-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "startUrls": [
    {
      "url": "https://housesigma.com/on/agents/ben-ghasemian/"
    }
  ],
  "provinces": [
    "ON"
  ],
  "areas": [
    "all"
  ],
  "languages": [
    "all"
  ],
  "maxItems": 20,
  "enrichProfiles": true
}' |
apify call automation-lab/housesigma-agents-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=automation-lab/housesigma-agents-scraper",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "HouseSigma Agents Scraper",
        "description": "Extract public HouseSigma realtor profiles, languages, service-area signals, biographies, and transaction summaries for Canadian lead lists.",
        "version": "0.1",
        "x-build-id": "26YSqkKqogIO0pw8q"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/automation-lab~housesigma-agents-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-automation-lab-housesigma-agents-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/automation-lab~housesigma-agents-scraper/runs": {
            "post": {
                "operationId": "runs-sync-automation-lab-housesigma-agents-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/automation-lab~housesigma-agents-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-automation-lab-housesigma-agents-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "properties": {
                    "startUrls": {
                        "title": "HouseSigma agent profile URLs",
                        "type": "array",
                        "description": "Optional direct HouseSigma profile URLs such as https://housesigma.com/on/agents/ben-ghasemian/.",
                        "items": {
                            "type": "object",
                            "required": [
                                "url"
                            ],
                            "properties": {
                                "url": {
                                    "type": "string",
                                    "title": "URL of a web page",
                                    "format": "uri"
                                }
                            }
                        }
                    },
                    "provinces": {
                        "title": "Provinces",
                        "type": "array",
                        "description": "HouseSigma province codes to scan. Supported examples: ON, BC, AB.",
                        "default": [
                            "ON"
                        ],
                        "items": {
                            "type": "string"
                        }
                    },
                    "areas": {
                        "title": "Areas",
                        "type": "array",
                        "description": "HouseSigma area slugs to scan. Use all for the default province-wide directory or * to try all known areas.",
                        "default": [
                            "all"
                        ],
                        "items": {
                            "type": "string"
                        }
                    },
                    "languages": {
                        "title": "Languages",
                        "type": "array",
                        "description": "Language filter values. Use all for any language or * to try all known language filters.",
                        "default": [
                            "all"
                        ],
                        "items": {
                            "type": "string"
                        }
                    },
                    "maxItems": {
                        "title": "Maximum agents",
                        "minimum": 1,
                        "maximum": 10000,
                        "type": "integer",
                        "description": "Maximum number of unique agent profile records to save.",
                        "default": 50
                    },
                    "enrichProfiles": {
                        "title": "Enrich profiles",
                        "type": "boolean",
                        "description": "Fetch each public profile to add biography, languages, transaction summary, top cities, and property-type distribution.",
                        "default": true
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
