Georgia GREC Real Estate License Scraper (Firms & Agents)
Pricing
from $17.00 / 1,000 results
Georgia GREC Real Estate License Scraper (Firms & Agents)
Scrape Georgia Real Estate Commission (GREC) firms and agents: firm phone, email, DBA, active-agent count, broker license, plus agent license type, status, renewal and firm. Filter by city, name or license #. Export to JSON, CSV or Excel.
Pricing
from $17.00 / 1,000 results
Rating
0.0
(0)
Developer
Scrapers Lat
Maintained by CommunityActor stats
0
Bookmarked
2
Total users
1
Monthly active users
3 days ago
Last modified
Categories
Share
Georgia GREC Real Estate License Scraper (Firms & Agents)
Here is one real result, with every field the actor returns (a firm record):
{"entityType": "firm","firmName": "CHICK DEEP ENTERPRISES LLC","city": "Atlanta","licenseNumber": "79303","licenseStatus": "ACTIVE","renewalDueDate": "10/31/2029","phone": "4044268899","email": "deegetsitdone@gmail.com","dbaName": "NEW FREEDOM REALTY PARTNERS","activeAgents": 1,"brokerLicenseNumber": "296643","licenseType": null,"firmRole": null,"firmNameOfAgent": null,"historyUrl": "https://ata.grec.state.ga.us/Account/ViewHistoryCertification?pAuthorizationNumber=79303&pAuthorizationType=BKFM","searchCity": "Atlanta","searchName": null,"source": "Georgia Real Estate Commission (GREC)","observedAt": "2026-08-10T14:37:45.805Z"}
The most complete Georgia GREC real estate license scraper available. It returns every field the Georgia Real Estate Commission exposes per record, including firm phone, email, DBA, active-agent count and broker license, or agent license type, status, renewal and firm, plus optional AI enrichment, and gives you filters for record type, city, name and license number to target exactly the licensees you need.
📥 Input · 📤 Output · 💰 Pricing · ▶️ Examples
Table of contents
- What it does
- Quickstart
- Input reference
- Output reference
- Example output record
- Run via API and CLI
- Fetch results
- Billing and limits
- FAQ and troubleshooting
What it does
The actor searches the Georgia Real Estate Commission (GREC) license database for the record type you choose (firm, agent, AMC or appraiser), fanning out across the cities and last names you pass to get past the source's 50-row-per-query cap, and writes one normalized record per licensee to the run's dataset. Firm records include phone, email, DBA, active-agent count and broker license; individual records include license type, status, renewal date and the firm they are attached to. Missing source values are returned as null, and optional AI add-ons (lead score and tier, profile summary) run per record when enabled on a paid plan.
Data covers licensees registered with the Georgia Real Estate Commission (Georgia, USA).
Quickstart
Open the actor, paste this into the input, and press Run. It returns up to 10 real-estate firms in Atlanta with phone and email.
{"entityType": "firm","cities": ["Atlanta"],"maxResults": 10}
Split by several cities and last names to collect more records past the 50-row-per-query source cap. Every input field is optional; with an empty input the actor searches firms in Atlanta.
Input reference
| Field | Type | Required | Default | Description |
|---|---|---|---|---|
entityType | enum | no | firm | firm (brokerages, includes phone + email), agent (individuals), amc (appraisal management companies), appraiser (individuals). |
cities | string[] | no | ["Atlanta"] | Georgia cities to search. Each is searched separately so one run can cover many markets. |
lastNames | string[] | no | (none) | Last names (agents) or firm-name prefixes to fan out past the 50-row-per-query cap. |
firstName | string | no | (none) | First-name filter for individual agents/brokers/appraisers. |
authorizationNumber | string | no | (none) | Look up a single license (authorization) number directly. |
maxResults | integer | no | 50 | Maximum records to collect across all queries. |
withLeadScore | boolean | no | false | Paid add-on. Adds aiLeadScore, aiLeadTier, aiLeadRationale. Charged only on usable output. Requires a paid Apify plan. |
withProfileSummary | boolean | no | false | Paid add-on. Adds aiProfileSummary. Charged only on usable output. Requires a paid Apify plan. |
Filters combine with logical AND. Empty filters are ignored.
Output reference
One dataset item per licensee. Firm and individual records share one schema; fields not relevant to a record type are null. Types: string, integer, or null.
| Field | Type | Description |
|---|---|---|
entityType | string | firm, agent, amc or appraiser. |
firmName | string | Firm/brokerage name (firm records), else null. |
fullName | string | Individual's full name (agent/appraiser records), else absent/null. |
city | string | Firm city (firm records), or null. |
licenseNumber | string | License (authorization) number. |
licenseStatus | string | License status, for example ACTIVE. |
renewalDueDate | string | Renewal due date (MM/DD/YYYY). |
phone | string | Firm phone digits (firm records), or null. |
email | string | Firm email (firm records), or null. |
dbaName | string | Doing-business-as name (firm records), or null. |
activeAgents | integer | Active agent count (firm records), or null. |
brokerLicenseNumber | string | Broker license number (firm records), or null. |
licenseType | string | License type (individual records), or null. |
firmRole | string | Role at the firm (individual records), or null. |
firmNameOfAgent | string | Firm the individual is attached to, or null. |
historyUrl | string | GREC license history/certification URL. |
searchCity | string | The city query this record came from, or null. |
searchName | string | The name query this record came from, or null. |
aiLeadScore | integer | AI lead score (0 to 100). Present only when withLeadScore produced output, else null. |
aiLeadTier | string | AI lead tier. Present only when withLeadScore produced output, else null. |
aiLeadRationale | string | AI rationale. Present only when withLeadScore produced output, else null. |
aiProfileSummary | string | AI profile summary. Present only when withProfileSummary produced output, else null. |
source | string | Always Georgia Real Estate Commission (GREC). |
observedAt | string | ISO 8601 timestamp of when the record was collected. |
error | string | On a failed run, a single item with a populated error field is written instead. |
Example output record
Real record from a live run (input {"entityType": "firm", "cities": ["Atlanta"], "maxResults": 10}):
{"entityType": "firm","firmName": "CHICK DEEP ENTERPRISES LLC","city": "Atlanta","licenseNumber": "79303","licenseStatus": "ACTIVE","renewalDueDate": "10/31/2029","phone": "4044268899","email": "deegetsitdone@gmail.com","dbaName": "NEW FREEDOM REALTY PARTNERS","activeAgents": 1,"brokerLicenseNumber": "296643","historyUrl": "https://ata.grec.state.ga.us/Account/ViewHistoryCertification?pAuthorizationNumber=79303&pAuthorizationType=BKFM","searchCity": "Atlanta","source": "Georgia Real Estate Commission (GREC)","observedAt": "2026-08-10T14:37:45.805Z"}
Run via API and CLI
Start a run and wait for it to finish, then read the dataset. Replace <TOKEN> with your Apify API token.
Run synchronously and get dataset items in one call:
curl -X POST "https://api.apify.com/v2/acts/scrapers_lat~georgia-grec-realestate-scraper/run-sync-get-dataset-items?token=<TOKEN>" \-H "Content-Type: application/json" \-d '{"entityType":"firm","cities":["Atlanta","Savannah"],"maxResults":50}'
Start a run asynchronously:
curl -X POST "https://api.apify.com/v2/acts/scrapers_lat~georgia-grec-realestate-scraper/runs?token=<TOKEN>" \-H "Content-Type: application/json" \-d '{"entityType":"agent","cities":["Marietta"],"lastNames":["Smith","Jones"],"maxResults":100}'
Apify CLI:
apify call scrapers_lat/georgia-grec-realestate-scraper \--input '{"authorizationNumber":"79303"}'
Fetch results
Every run writes to a dataset. Fetch items as JSON, CSV, or Excel by changing format:
# JSONcurl "https://api.apify.com/v2/datasets/<DATASET_ID>/items?token=<TOKEN>&clean=true&format=json"# CSVcurl "https://api.apify.com/v2/datasets/<DATASET_ID>/items?token=<TOKEN>&clean=true&format=csv"# Paginate large datasetscurl "https://api.apify.com/v2/datasets/<DATASET_ID>/items?token=<TOKEN>&offset=1000&limit=1000"
<DATASET_ID> is returned as defaultDatasetId in the run object. Use offset and limit to page through large result sets. clean=true drops empty and internal fields.
Billing and limits
- Pay per result. You are charged per license record returned (
resultevent). See the pricing tab for the current per-result price. - Optional AI add-ons (
ai_lead_score,ai_profile_summary) are billed separately and only when they produce usable output, and only on paid Apify plans. - No charge on failure. If a run errors, the actor writes a single item with a populated
errorfield and does not charge for it. Empty runs cost nothing. - Spend cap respected. Set
maxTotalChargeUsdon the run; once reached, the actor stops emitting and charging further billable results. - Free Apify plans are capped at 10 records per run. Upgrade for higher
maxResults.
FAQ and troubleshooting
A run returned 0 records. Why? No licensees matched the record type, city and name filters. Try another city or remove the name filter. Zero-result runs are not charged.
How do I get the most records?
The source caps a single query at 50 rows. Pass several cities and, for individuals, several lastNames, so the actor fans out across many queries in one run.
Which record type gives phone and email?
firm. Firm/brokerage records include phone, email, DBA and broker license. Individual records include license type, status, renewal and firm.
Why is email or phone null on an agent record?
GREC exposes contact details on firm records, not individual ones. Those fields are null for agents/appraisers, never invented.
Do the AI fields cost extra? Yes. They are opt-in paid add-ons, billed only when they return usable output, and disabled on free Apify plans.
Is this an official GREC tool? No. This actor is independent and has no affiliation with the Georgia Real Estate Commission. It reads only data that is publicly available. Use it in accordance with the source's terms of service.
Related scrapers
- California DRE Scraper: California real estate licensees.
- Arizona ADRE Real Estate Scraper: Arizona real estate licensees.
- Ohio Real Estate Licensees Scraper: Ohio real estate licensees.
- North Carolina NCREC Scraper: North Carolina real estate licensees.
- ASC Appraisers Scraper: US real estate appraisers.
- California CSLB Scraper: California contractor licenses.
More scrapers at scrapers.lat
Built and maintained by scrapers.lat, where we publish scrapers for US and Latin American public platforms: company registries, government data, finance, e-commerce and more. Browse the catalog or request a custom scraper at scrapers.lat.
Independent tool, not affiliated with the Georgia Real Estate Commission. Accesses only publicly available data. Use in accordance with the source's terms of service.
