# Ohio Real Estate Licensees Scraper (Broker Affiliations) (`scrapers_lat/ohio-realestate-licensees-scraper`) Actor

Scrape Ohio real-estate licensees (salespersons, brokers, appraisers, home inspectors, brokerages) with their broker affiliation, license type, status and dates. Filter by name, license number, status or type. Export to JSON, CSV or Excel.

- **URL**: https://apify.com/scrapers\_lat/ohio-realestate-licensees-scraper.md
- **Developed by:** [Scrapers Lat](https://apify.com/scrapers_lat) (community)
- **Categories:** Real estate, Lead generation
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $12.75 / 1,000 results

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 web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
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.

- **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 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

## Ohio Real Estate Licensees Scraper (Broker Affiliations)

> Pull Ohio's real-estate licensure roster — salespersons, brokers, brokerages, appraisers, home inspectors and land professionals — each linked to the **brokerage / primary licensee they are affiliated with**. Filter by name, license number, status, license type or brokerage and export clean rows to JSON, CSV or Excel.

[![scrapers.lat](https://img.shields.io/badge/scrapers-lat-blue)](https://scrapers.lat)

**📥 [Input](https://apify.com/scrapers_lat/ohio-realestate-licensees-scraper/input-schema) · 📤 [Output](https://apify.com/scrapers_lat/ohio-realestate-licensees-scraper/output-schema) · 💰 [Pricing](https://apify.com/scrapers_lat/ohio-realestate-licensees-scraper/pricing) · ▶️ [Examples](https://apify.com/scrapers_lat/ohio-realestate-licensees-scraper/examples)**

### What you get

Each licensee is returned as one flat record with:

- **License number** and **full name** (person or business), first / last / preferred / organization name
- **License type / specialty** — Salesperson, Broker, Brokerage, Appraiser, Appraiser Assistant, Home Inspector, Land Professional, Branch Office, AMC and more
- **Status** (Active, Inactive, Closed, Denied) and **status reason**
- **Effective** and **expiration** dates
- **Broker affiliation** — the affiliated brokerage / primary licensee **name** and its **license number** (the agent → brokerage link)
- State (OH), source and capture timestamp

Refreshed from the state's daily-updated public roster.

### Who is it for

- Recruiters and brokerages mapping which agents are affiliated with which firms
- KYB / compliance teams verifying Ohio real-estate credentials and license status
- Market researchers sizing brokerages by affiliated headcount
- CRM and lead-list builders needing clean, deduplicated licensee rows

### How to use it

1. Set any combination of filters — **names**, **license numbers**, **statuses**, **license types**, or **broker/brokerage affiliation**. Leave all empty to browse the full roster.
2. Set **Max Licensees To Scrape**.
3. Run and export to JSON, CSV or Excel.

Filters combine as AND across categories and OR within a category. Records are deduplicated by license number.

### FAQ

**Does it include phone numbers or emails?** No. This roster is licensure/affiliation data only — it does not publish contact details, and neither do we.

**How fresh is the data?** It reflects the state's daily-refreshed licensure roster.

**Do failed or empty runs cost anything?** No. You are only charged for real licensee records returned. Empty results cost nothing.

**Do I need any login or key?** No. Everything is handled for you.

### Related actors

More company, KYB and licensing scrapers at [scrapers.lat](https://scrapers.lat).

***

This actor returns public licensure records and is not affiliated with or endorsed by the State of Ohio or any brokerage. Use the data in compliance with applicable laws.

# Actor input Schema

## `names` (type: `array`):

Filter by licensee name (first, last, preferred or business name). Partial match, case-insensitive. Leave empty to match all.

## `licenseNumbers` (type: `array`):

Filter by exact license number(s), e.g. SAL.2005003139 or REC.2019000205.

## `statuses` (type: `array`):

Filter by status: Active, Inactive, Closed or Denied.

## `licenseTypes` (type: `array`):

Filter by license type, e.g. Salesperson, Broker, Brokerage, Appraiser, Home Inspector License, Land Professional. Partial match.

## `brokerNames` (type: `array`):

Filter agents by their affiliated brokerage / primary licensee name, e.g. Red 1 Realty. Partial match.

## `maxLicensees` (type: `integer`):

Maximum number of matching licensees to return.

## Actor input object example

```json
{
  "names": [
    "Smith"
  ],
  "statuses": [
    "Active"
  ],
  "maxLicensees": 50
}
```

# Actor output Schema

## `results` (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 = {
    "names": [
        "Smith"
    ],
    "statuses": [
        "Active"
    ],
    "maxLicensees": 50
};

// Run the Actor and wait for it to finish
const run = await client.actor("scrapers_lat/ohio-realestate-licensees-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 = {
    "names": ["Smith"],
    "statuses": ["Active"],
    "maxLicensees": 50,
}

# Run the Actor and wait for it to finish
run = client.actor("scrapers_lat/ohio-realestate-licensees-scraper").call(run_input=run_input)

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

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

```

## CLI example

```bash
echo '{
  "names": [
    "Smith"
  ],
  "statuses": [
    "Active"
  ],
  "maxLicensees": 50
}' |
apify call scrapers_lat/ohio-realestate-licensees-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,scrapers_lat/ohio-realestate-licensees-scraper"
        }
    }
}

```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/XcKBUqxyl5iYyLinI/builds/iHvvSaheinVh6cIpO/openapi.json
