Check any Nevada contractor license — status, expiration, and disciplinary history — through one normalized API, or look it up by hand on the state board portal.
Nevada also supports name search — when you only have a contractor's name, the /search endpoint returns every matching license with full metadata.
Some Nevada trades are licensed by the city, not the state board. We also cover municipal licensing in Las Vegas under the same normalized schema and the same /verify call.
The /verify response is identical in shape across every state, so your
integration code never changes per jurisdiction:
{
"valid": true,
"name": "SAMPLE CONTRACTING LLC",
"license_number": "SAMPLE-12345",
"trade": "electrical",
"expiration": "05/12/2027",
"status": "Active",
"state": "NV",
"disciplinary_actions": [],
"source_url": "https://app.nvcontractorsboard.com/Clients/NVSCB/Public/ContractorLicenseSearch/ContractorLicenseSearch.aspx",
"cached": false,
"checked_at": "2026-06-22T05:14:00Z"
}Example response showing the normalized schema. Wire it up against deterministic fixtures in the sandbox — no credit cost.
# Verify a Nevada contractor license with one API call curl -H "X-API-Key: YOUR_KEY" \ "https://www.tradesapi.com/verify?state=NV&license=SAMPLE-12345&trade=electrical"
The official Nevada board portal is at https://app.nvcontractorsboard.com/Clients/NVSCB/Public/ContractorLicenseSearch/ContractorLicenseSearch.aspx — free to search by hand. TradesAPI wraps it (and every other state) in one API so you don't maintain 51 different scrapers.
Every new API key includes 50 free verifications across all 50 states + DC, plus hosted MCP access for Claude, Cursor, and any MCP-speaking agent. No credit card to start.