# Carrier HVAC Dealer Directory Scraper (`spry_frame/carrier-dealer-scraper`) Actor

Scrape the complete Carrier certified HVAC dealer directory — name, location, phone, email, ratings, certifications, and dealer tier for all US dealers.

- **URL**: https://apify.com/spry\_frame/carrier-dealer-scraper.md
- **Developed by:** [COSENT GROUP](https://apify.com/spry_frame) (community)
- **Categories:** Lead generation, Other
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $18.00 / 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.

Learn more: https://docs.apify.com/actors/running/actors-in-store.md#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

## Carrier HVAC Dealer Directory Scraper

Extract the complete Carrier certified HVAC dealer directory across the United States — contact info, ratings, certifications, dealer tier, years in business, and GPS coordinates for every dealer in the network.

### What it collects

| Field | Description |
|---|---|
| **dealerId** | Unique Carrier dealer ID |
| **name** | Business name |
| **address** | Street address |
| **city** | City |
| **state** | State abbreviation |
| **zipCode** | Zip code |
| **phone** | Primary phone number |
| **tollFree** | Toll-free number (if available) |
| **email** | Contact email |
| **website** | Dealer website URL |
| **hoursOfOperation** | Business hours description |
| **yearsInBusiness** | How long the dealer has been in business |
| **rating** | Review rating (Google, Yelp, or Yext) |
| **reviewCount** | Number of reviews |
| **reviewSource** | Platform the rating comes from |
| **nateCertified** | Yes/No — NATE certification |
| **factoryAuthorized** | Yes/No — Factory Authorized by Carrier |
| **dealerTier** | Pinnacle, Hall of Fame, Distinguished, Factory Authorized, or Standard |
| **certifications** | Full list: NATE Certified, Energy Expert, Indoor Air Specialist, Ductless Systems, Healthy Air, Geothermal, Financing, Spanish Speaking, etc. |
| **latitude** | GPS latitude |
| **longitude** | GPS longitude |
| **scrapedAt** | Timestamp |

### Use cases

- **HVAC distributors** building state or regional outreach lists
- **PE firms and investors** mapping Carrier dealer density and quality by market
- **Marketing agencies** prospecting HVAC contractors for Google Ads, SEO, or web design services
- **Field service software vendors** targeting contractors for scheduling and dispatch tools
- **Finance companies** identifying dealers that offer financing programs
- **Staffing and recruiting** finding NATE-certified shops for technician hiring pipelines
- **Competitive intelligence** — who are Carrier's top-tier Pinnacle and Hall of Fame dealers?
- **GIS and market analysis** — map the full dealer network using lat/lon coordinates

### Input options

| Input | Default | Description |
|---|---|---|
| **Filter by State(s)** | *(all states)* | 2-letter state codes (e.g. `TX`, `CA`, `FL`). Leave empty for all states. |
| **Max Results** | `100` | Set to `0` for the full national directory |

### How it works

Carrier's dealer locator uses a ZIP code search API. This scraper queries ~800 seed ZIP codes spread evenly across all 50 states, deduplicates results by dealer ID, and applies any state filter you specify. A full national run typically returns **10,000+ unique dealers**.

### Example output

```json
{
  "dealerId": "20247",
  "name": "Active Air, Inc.",
  "address": "1060 10th St",
  "city": "Calera",
  "state": "AL",
  "zipCode": "35040",
  "phone": "205-690-0943",
  "tollFree": "",
  "email": "activeaircalera@att.net",
  "website": "http://www.activeaircalera.com",
  "hoursOfOperation": "Normal Business Hours",
  "yearsInBusiness": "Over 20 years of serving homeowners",
  "rating": "5.0",
  "reviewCount": "1",
  "reviewSource": "Yext",
  "nateCertified": "Yes",
  "factoryAuthorized": "Yes",
  "dealerTier": "Factory Authorized",
  "certifications": "NATE Certified, Factory Authorized, Healthy Air",
  "latitude": "33.109100",
  "longitude": "-86.718300",
  "scrapedAt": "2026-08-16T02:45:25.275Z"
}
```

### Notes

- Data sourced from Carrier's public dealer locator API — no login required
- Carrier is the largest HVAC manufacturer in the United States
- Dealer tiers from highest to lowest: Pinnacle → Hall of Fame → Distinguished → Factory Authorized → Standard
- GPS coordinates are accurate to 6 decimal places (~0.1 meter precision)

# Actor input Schema

## `states` (type: `array`):

Limit results to specific US states. Use 2-letter abbreviations (e.g. TX, CA, FL). Leave empty to return all states.

## `maxResults` (type: `integer`):

Maximum number of unique dealers to return. Set to 0 for no limit (full US directory).

## Actor input object example

```json
{
  "states": [],
  "maxResults": 25
}
```

# Actor output Schema

## `dealerId` (type: `string`):

Unique Carrier dealer ID.

## `name` (type: `string`):

Business name of the Carrier certified dealer.

## `address` (type: `string`):

Street address.

## `city` (type: `string`):

City.

## `state` (type: `string`):

State abbreviation.

## `zipCode` (type: `string`):

Dealer zip code.

## `phone` (type: `string`):

Primary phone number.

## `tollFree` (type: `string`):

Toll-free phone number.

## `email` (type: `string`):

Contact email.

## `website` (type: `string`):

Dealer website URL.

## `hoursOfOperation` (type: `string`):

Business hours description.

## `yearsInBusiness` (type: `string`):

How long the dealer has been in business.

## `rating` (type: `string`):

Review rating (Google, Yelp, or Yext).

## `reviewCount` (type: `string`):

Number of reviews.

## `reviewSource` (type: `string`):

Platform the rating comes from (Google, Yelp, Yext).

## `nateCertified` (type: `string`):

Yes if the dealer holds NATE certification.

## `factoryAuthorized` (type: `string`):

Yes if the dealer is Factory Authorized by Carrier.

## `dealerTier` (type: `string`):

Highest Carrier tier: Pinnacle, Distinguished, Hall of Fame, or Standard.

## `certifications` (type: `string`):

Comma-separated list of all dealer certifications and features.

## `latitude` (type: `string`):

GPS latitude.

## `longitude` (type: `string`):

GPS longitude.

## `scrapedAt` (type: `string`):

ISO timestamp when this record was collected.

# 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 = {
    "maxResults": 25
};

// Run the Actor and wait for it to finish
const run = await client.actor("spry_frame/carrier-dealer-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 = { "maxResults": 25 }

# Run the Actor and wait for it to finish
run = client.actor("spry_frame/carrier-dealer-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 '{
  "maxResults": 25
}' |
apify call spry_frame/carrier-dealer-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,spry_frame/carrier-dealer-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/czNXzwF7oqJiXIhfk/builds/MYFE3EfnMhfDJlsmx/openapi.json
