# Bryant HVAC Dealer Directory Scraper (`spry_frame/bryant-dealer-scraper`) Actor

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

- **URL**: https://apify.com/spry\_frame/bryant-dealer-scraper.md
- **Developed by:** [COSENT GROUP](https://apify.com/spry_frame) (community)
- **Categories:** Lead generation, Other
- **Stats:** 2 total users, 1 monthly users, 0.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

## Bryant HVAC Dealer Directory Scraper

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

### What it collects

| Field | Description |
|---|---|
| **dealerId** | Unique Bryant 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 |
| **factoryAuthorized** | Yes/No — Factory Authorized by Bryant |
| **dealerTier** | Charles Bryant Award, Pinnacle Award, Medal of Excellence, Factory Authorized, or Standard |
| **certifications** | Full list: NATE Dealer, Factory Authorized Dealer, Financing Available, Ductless Systems, Geothermal, Indoor Air Quality Specialist, Spanish Speaking, Women in HVAC, etc. |
| **latitude** | GPS latitude |
| **longitude** | GPS longitude |
| **scrapedAt** | Timestamp |

### Use cases

- **HVAC distributors** building targeted outreach lists by state or region
- **PE firms and investors** mapping Bryant dealer density and quality across markets
- **Marketing agencies** prospecting HVAC contractors for Google Ads, SEO, or web design
- **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 Bryant's top Charles Bryant Award and Pinnacle 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

Bryant'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 **thousands of unique dealers** across the US.

### Dealer tiers (highest to lowest)

| Tier | Description |
|---|---|
| **Charles Bryant Award** | Bryant's highest honor — top performers across all metrics |
| **Pinnacle Award** | Dealers who have won Medal of Excellence 5+ times |
| **Medal of Excellence** | Recognizes outstanding customer satisfaction and business growth |
| **Factory Authorized** | Met Bryant's standards for skills, service, and satisfaction guarantee |
| **Standard** | Active certified Bryant dealer |

### Example output

```json
{
  "dealerId": "11808",
  "name": "Donald Hoffackers A/C & Htg",
  "address": "19703 Waters Rd",
  "city": "Germantown",
  "state": "MD",
  "zipCode": "20874",
  "phone": "240-686-5955",
  "tollFree": "",
  "email": "",
  "website": "",
  "hoursOfOperation": "Normal Business Hours",
  "yearsInBusiness": "Over 40 years of serving homeowners",
  "factoryAuthorized": "Yes",
  "dealerTier": "Factory Authorized",
  "certifications": "Factory Authorized Dealer, NATE Dealer, Financing Available, Geothermal",
  "latitude": "39.129200",
  "longitude": "-77.295300",
  "scrapedAt": "2026-08-16T03:05:17.425Z"
}
```

### Notes

- Data sourced from Bryant's public dealer locator API — no login required
- Bryant is owned by Carrier, the largest HVAC manufacturer in the United States
- GPS coordinates are accurate to 6 decimal places

# 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 Bryant dealer ID.

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

Business name of the Bryant 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.

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

Yes if the dealer is Factory Authorized by Bryant.

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

Highest Bryant award tier: Charles Bryant Award, Pinnacle, Medal of Excellence, Factory Authorized, 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/bryant-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/bryant-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/bryant-dealer-scraper --silent --output-dataset

```

## MCP server setup

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