← Use cases

Use case

Verify a New Mexico Contractor by License Number

Confirm an NM CID contractor license number and business name from the official New Mexico registry.

Say you underwrite contractor liability policies, and an application has just landed with a New Mexico license number typed into a form field. Before it goes any further, that number has to be real: it has to exist in the state registry, it has to be attached to the business named on the application, and it has to still be active on the day you bind. The number on the form is a claim. Your job is to turn it into a fact, and to keep a record of having done so.

One application, that’s a two-minute job. The problem is that applications don’t arrive one at a time, and each one has to be checked again at renewal.

The manual way, and what it costs

The public search form on NM CID
NM CID — the official search. One record at a time.

The registry is public and free, and this is what it looks like. New Mexico’s contractor licensing e-services are hosted by PSI, not by the state directly. You pick Search Company, set the company type to Contractor, type the license number into the box — and then you deal with the thing at the bottom of the form: a smeared, struck-through word rendered as an image, with a box underneath it labelled Enter Captcha. Read it, type it, press Search. Get it wrong and the portal throws the search away and gives you a fresh word to squint at.

If you have one license number to check, go and do exactly that. It is free, it is authoritative, it takes a minute, and nothing on this page will do it better. Genuinely — close the tab.

Where it stops being reasonable is repetition. There is no export on that results page, so every verification ends with you copy-pasting a status and an expiry date into whatever system of record you keep. There is no way to schedule it, so “recheck this contractor before renewal” is a calendar reminder and a manual re-run, not a job. And every single search — including the ones that come back empty — makes you read another CAPTCHA. Fifty policies in the book means fifty CAPTCHAs, and fifty again next quarter. That’s the point where a human reading pictures of words stops being a verification process.

The faster way

New Mexico Contractor License Lookup & Verify (NM CID) does the same search once and hands back every row at once.

{
  "licenseNumber": "396966"
}

That’s the whole input. licenseNumber is the exact-match field, so you’re asking the registry the same closed question the underwriting file asks: does license 396966 exist, and what is its state today? You deliberately leave businessName empty — you are not searching for a company, you are testing a number, and adding a name filter would only let a typo in the applicant’s spelling hide a license that is really there. The name comes back from the registry, which is the point: you want the state to tell you who owns that number, not to confirm what the applicant already told you.

The CAPTCHA on the search form is handled inside the run. You don’t see it, you don’t type it, and you don’t have an account with a solving service — it’s covered by the actor’s per-search fee.

What comes back

{
  "state": "NM",
  "license_number": "396966",
  "business_name": "ADAMS & SMITH, INC.",
  "person_name": null,
  "license_type": "Contractor",
  "status": "Active",
  "issue_date": null,
  "expiration_date": "12/31/2027",
  "city": "LINDON",
  "county": null,
  "address": "1380 W CENTER ST",
  "zip_code": "84042",
  "phone": null,
  "bond_amount": null,
  "bond_company": null,
  "insurance_company": null,
  "matched_by": "business_name",
  "source_url": "https://public.psiexams.com/search.jsp"
}
FieldExample valueMeaning
stateNMAlways ‘NM’ for this actor
license_number396966NM CID contractor license number
statusActiveLicense status (e.g. Active, Cancelled)
license_typeContractorAlways ‘Contractor’ (NM CID’s contractor company category)
business_nameADAMS & SMITH, INC.Licensed business/company name
address1380 W CENTER STPrincipal place of business street address

Three columns close the file. status tells you the license is Active rather than cancelled. expiration_date tells you it will still be active on the day you bind, and gives you the date to re-check against. And business_name is the one that catches the mismatch — if the registry says ADAMS & SMITH, INC. and the application says something else, you have found a real problem, and you found it before signing rather than at claim time.

The address fields are worth a glance too. city and zip_code come back as filed, which means they are sometimes out of state — the row above is a New Mexico license held by a company with a Utah address. That’s a fact about the licensee, not an error.

What you’d do with it

Run it as the verification step in onboarding: license number in, one row out, and that row lands in the policy record as evidence — status, expiry, the registry’s own spelling of the business name, and the date you checked. Because it’s an API call rather than a browser session, it also survives being put on a schedule: re-run the same input a month before each expiration_date and let the result flag anything that has gone from Active to something else, instead of trusting a renewal reminder to make someone open the portal.

Worth knowing

This actor covers the Contractor company-license category on public.psiexams.com and nothing else. It does not search RLD’s separate Boards and Commissions Division registry, and it does not cover individual or personal licenses — so a tradesperson licensed as a person will not appear here at all.

It also gives you less than the portal’s own detail view. County, phone, bond amount, bond company, and insurance company all come back null, because those fields aren’t on the results page the search returns — they sit behind a per-record detail view that JavaScript opens and no URL points at. If your underwriting file needs a bond figure, this will not supply it. For the same reason source_url links to the search portal, not to the specific record, so you cannot paste a deep link into a file note.

And the data is live, not a snapshot: it reflects the registry at the moment you asked. That’s the right behaviour for verification, but it means two runs a week apart can legitimately disagree.


Run it yourself: How to run New Mexico Contractor License Lookup & Verify (NM CID) walks the whole thing step by step.

If the application gave you a company name instead of a number, Find Every New Mexico Contractor License by Name starts from the other end. If the contractor is licensed somewhere other than New Mexico — or you don’t yet know where — Multi-State Contractor & Trade License Lookup checks the same name across several state registries in one run.

Last updated 2026-07-13