# Roster Aelslagid State — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> 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.

**Category:** Government & Public Data | **Website:** [roster.aelslagid.state.mn.us/LicenseSearch.aspx](https://roster.aelslagid.state.mn.us/LicenseSearch.aspx) | **Docs:** [parse.bot/marketplace/fac2cc09-b248-49fb-84bc-ac6fe2b06822/roster-aelslagid-state-mn-us-api](https://parse.bot/marketplace/fac2cc09-b248-49fb-84bc-ac6fe2b06822/roster-aelslagid-state-mn-us-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-roster-aelslagid-state-mn-us-api-fac2cc09/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### search_licenses

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.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `last_name` | string | Yes | Last name to search for. Partial matches are supported (e.g. 'John' matches Johnson, Johns, Johnsen). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-roster-aelslagid-state-mn-us-api-fac2cc09/search_licenses \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"last_name":"<string>"}'
```
