Colorado Professional License Scraper avatar

Colorado Professional License Scraper

Pricing

from $3.50 / 1,000 results

Go to Apify Store
Colorado Professional License Scraper

Colorado Professional License Scraper

Colorado Professional License Scraper — Scrape 500K+ Colorado professional licenses from DORA open data API. Filter by type (Electrical, Plumbing, HVAC, Medical, Real Estate), status, city & date. Updated nightly. No auth, no proxy, no browser — direct Socrata API. Export JSON/CSV

Pricing

from $3.50 / 1,000 results

Rating

0.0

(0)

Developer

Haketa

Haketa

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

3 days ago

Last modified

Share

Colorado DORA Contractor License Scraper

Scrape Colorado contractor and professional licenses from the DORA CIM Open Data API — no browser, no proxy, no authentication required.

Apify Actor


How It Works

Colorado DORA publishes all professional and occupational license data on the Colorado Information Marketplace (CIM) via a Socrata SODA API. Data is updated nightly. This actor queries the API directly with SoQL filters — no scraping, no browser, no rate limits.

GET https://data.colorado.gov/resource/7s5z-vewr.json
?$where=licensetype in ('EC','PC','ME','JW','MP','JP','PE','ARC')
AND licensestatusdescription in ('Active','Expired')
&$limit=1000&$offset=0
&$order=licensefirstissuedate DESC

Input

{
"licenseTypes": ["EC", "PC", "ME", "JW", "MP", "JP", "PE", "ARC"],
"statuses": ["Active", "Expired"],
"cities": [],
"issuedAfter": "2025-01-01",
"maxRecords": 5000,
"pageSize": 1000
}

Parameters

ParameterTypeDefaultDescription
licenseTypesarray["EC","PC","ME","JW","MP","JP","PE","ARC"]License type prefixes. See list below.
statusesarray["Active","Expired"]License statuses to include.
citiesarray[]City filter. Empty = all cities.
issuedAfterstringOnly licenses issued on/after this date (YYYY-MM-DD).
issuedBeforestringOnly licenses issued on/before this date.
maxRecordsinteger5000Max records to fetch. 0 = unlimited.
pageSizeinteger1000Records per API request.
requestDelayinteger (ms)200Delay between API calls.

Contractor License Type Prefixes

PrefixDescription
ECElectrical Contractor
PCPlumbing Contractor
MEMechanical / HVAC Contractor
JWJourneyman Wireman (Electrical)
MPMaster Plumber
JPJourneyman Plumber
PEProfessional Engineer
ARCArchitect

Other Available Prefixes

PrefixDescription
REBReal Estate Broker
COSCosmetology
NANursing
PHYPhysician
DENDental
ACUAcupuncture
CHIChiropractic

Output

Example record:

{
"licenseNumber": "EL.0012345",
"licenseType": "EC",
"subCategory": null,
"status": "Active",
"firstName": "John",
"lastName": "Smith",
"middleName": "A",
"suffix": null,
"entityName": "SMITH ELECTRIC LLC",
"city": "Denver",
"state": "CO",
"zipCode": "80202",
"specialty": null,
"firstIssueDate": "2020-03-15",
"lastRenewedDate": "2024-03-01",
"expirationDate": "2026-02-28",
"verifyUrl": "https://www.colorado.gov/dora/licensing/Lookup/PrintLicenseDetails.aspx?cred=123456&contact=789012",
"scrapedAt": "2026-04-17T14:00:00.000Z"
}

Use Cases

  • Lead generation for contractors — find active EC, PC, ME license holders in specific Colorado cities
  • Compliance monitoring — track expiring or suspended contractor licenses
  • Market sizing — count active contractors by type and city
  • Competitor intelligence — identify new contractors entering the market
  • Insurance/bonding — verify contractor license status before coverage
  • Scheduled monitoring — daily/weekly runs to catch new licenses and status changes

Performance & Cost

~0.002 CU per 1,000 records. No browser overhead — pure API. A full dump of all 8 contractor categories (~50,000 records) completes in ~60 seconds.


Data Source

  • Provider: Colorado Department of Regulatory Agencies (DORA)
  • Dataset: Professional and Occupational Licenses in Colorado
  • API: Socrata SODA 2.0 — data.colorado.gov/resource/7s5z-vewr.json
  • Update frequency: Nightly
  • Authentication: None (public open data)
  • Terms: Open data, no restrictions on commercial use

Changelog

VersionDateNotes
1.0.02026-04-17Initial release — Socrata SODA API, contractor license types, SoQL filtering, pagination