{"slug": "how-to-verify-a-canadian-contractor-licence-free-lookup-api-2026", "title": "How to Verify a Canadian Contractor Licence — Free Lookup + API (2026)", "summary": "A developer created a tool to verify Canadian contractor licenses across provincial registries, offering a free lookup site and an API for bulk data access. The tool scrapes Quebec's RBQ and Ontario's HCRA registries, providing clean JSON/CSV output for lead generation, due diligence, or AI agent integration. The data is sourced from official government open data and public records.", "body_md": "Every year, homeowners in Canada lose money to unlicensed contractors — and every province has an official registry that would have caught the problem in 30 seconds. The trouble is that each province has its own registry, its own search form, and its own data format.\n\nIn this guide: how contractor licensing works in Canada, how to check a licence for free, and how to get the full licence datasets by API if you're building something — a lead-gen tool, a due-diligence check, or an AI agent.\n\nThere is no federal contractor licence. The two biggest provincial systems:\n\n**Quebec — RBQ (Régie du bâtiment du Québec).** Nearly every construction contractor in Quebec must hold an RBQ licence — general contractors, plumbers, electricians, roofers, excavators. The licence number is 10 digits (format `XXXX-XXXX-XX`\n\n), and the RBQ publishes the full list of ~54,000 active licences as open data (CC-BY 4.0), refreshed daily.\n\n**Ontario — HCRA (Home Construction Regulatory Authority).** Ontario licenses *new home builders and vendors* through the HCRA. The Ontario Builder Directory shows licence status, years active, homes built, and regulatory actions. (Trades like electricians are regulated separately by ESA and others.)\n\nIf you just need to verify a single contractor before signing a contract, use a lookup site:\n\n** CheckContractors.ca** — free search across both registries in one place. Type the business name or licence number, get the status, licence categories, city, and licensing date. Every profile links back to the official registry so you can double-check the live record.\n\nWhat to look for before hiring:\n\nIf you need the data in bulk — every licensed plumber in Laval, all new home builders in Mississauga, a daily feed of newly licensed businesses — the registries themselves don't offer a convenient API. That's what the [Contractor License Scraper Canada](https://apify.com/truenorthdata/canada-contractor-licenses) Actor does: it turns both registries into clean JSON/CSV.\n\nExample: all licensed contractors in the Montérégie region, active only:\n\n```\n{\n  \"provinces\": [\"quebec\"],\n  \"regions\": [\"Monteregie\"],\n  \"activeOnly\": true\n}\n```\n\nEach record looks like this:\n\n```\n{\n  \"licenseNumber\": \"5717-0235-01\",\n  \"holderName\": \"CONSTRUCTION EXEMPLE INC.\",\n  \"city\": \"Montréal\",\n  \"region\": \"Montréal\",\n  \"categories\": [\"Entrepreneur spécialisé\"],\n  \"subcategoryCodes\": [\"6.2\"],\n  \"bondAmount\": 40000,\n  \"status\": \"Active\",\n  \"province\": \"QC\",\n  \"source\": \"rbq-open-data\"\n}\n```\n\nRun it on a schedule with `onlyNewSinceLastRun: true`\n\nand you get an incremental feed of brand-new licensed businesses — useful for B2B lead generation, insurance underwriting, or enriching building-permit data.\n\nCalling it from Python:\n\n``` python\nfrom apify_client import ApifyClient\n\nclient = ApifyClient(\"<YOUR_API_TOKEN>\")\nrun = client.actor(\"truenorthdata/canada-contractor-licenses\").call(\n    run_input={\n        \"provinces\": [\"quebec\"],\n        \"keywords\": [\"plomberie\"],\n        \"activeOnly\": True,\n    }\n)\nfor item in client.dataset(run[\"defaultDatasetId\"]).iterate_items():\n    print(item[\"holderName\"], item[\"licenseNumber\"], item[\"city\"])\n```\n\nThe Actor is also exposed over the Model Context Protocol, so Claude, Cursor, or any MCP client can query licences in plain language (\"find licensed roofing contractors in Laval\"):\n\n```\nhttps://mcp.apify.com?tools=truenorthdata/canada-contractor-licenses\n```\n\nYes. Both sources are official government data: the RBQ list is open data under CC-BY 4.0 (Quebec), and the HCRA Builder Directory is the public record Ontario maintains specifically so buyers can verify builders. No private sites are scraped.\n\nQuestions or a province you'd like added (BC is next on the roadmap)? Open an issue on the Actor page.", "url": "https://wpnews.pro/news/how-to-verify-a-canadian-contractor-licence-free-lookup-api-2026", "canonical_source": "https://dev.to/truenorthdata/how-to-verify-a-canadian-contractor-licence-free-lookup-api-2026-7mo", "published_at": "2026-07-08 23:20:40+00:00", "updated_at": "2026-07-08 23:41:04.889134+00:00", "lang": "en", "topics": ["developer-tools", "ai-tools", "ai-agents"], "entities": ["RBQ", "HCRA", "CheckContractors.ca", "Apify", "True North Data", "Claude", "Cursor"], "alternates": {"html": "https://wpnews.pro/news/how-to-verify-a-canadian-contractor-licence-free-lookup-api-2026", "markdown": "https://wpnews.pro/news/how-to-verify-a-canadian-contractor-licence-free-lookup-api-2026.md", "text": "https://wpnews.pro/news/how-to-verify-a-canadian-contractor-licence-free-lookup-api-2026.txt", "jsonld": "https://wpnews.pro/news/how-to-verify-a-canadian-contractor-licence-free-lookup-api-2026.jsonld"}}