Mn APIroster.aelslagid.state.mn.us ↗
Search for Minnesota civil engineer and professional licenses to verify credentials and find contact information for licensed professionals registered with the state board. Look up current licensure status, specializations, and registration details for architects, engineers, surveyors, landscape architects, and other design professionals in Minnesota.
curl -X GET 'https://api.parse.bot/scraper/295a73c2-3e63-4fe9-9235-cb4f3cbaa098/search_licenses?last_name=Smith' \ -H 'X-API-Key: $PARSE_API_KEY'
Search for professional licenses by last name. Returns all matching records including full name, license number, profession/discipline, and expiration date. Results include all professions (architects, engineers, surveyors, geologists, interior designers, landscape architects). A partial last name matches all names starting with that prefix.
| Param | Type | Description |
|---|---|---|
| last_namerequired | string | Last name to search for. Partial matches are supported (e.g. 'John' matches Johnson, Johns, Johnsen). |
{
"type": "object",
"fields": {
"total": "integer count of matching records",
"results": "array of license records, each containing full_name, license_number, profession, and expiration_date"
},
"sample": {
"data": {
"total": 265,
"results": [
{
"full_name": "Smith, Aaron D.",
"profession": "Professional Engineer [Structural I]",
"license_number": "44131",
"expiration_date": "06/30/2028"
},
{
"full_name": "Smith II, Addison R",
"profession": "Professional Engineer [Electrical]",
"license_number": "23041",
"expiration_date": "EXPIRED"
}
]
},
"status": "success"
}
}About the Mn API
The Mn API on Parse exposes 1 endpoint for the publicly available data on roster.aelslagid.state.mn.us. Calls return JSON over HTTPS and are billed per successful response.
Pin a release with the API-Snapshot-Version header so canonical updates don't silently change your contract.