# Pha Hlb 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 and retrieve current license and registration information for Minnesota pharmacy professionals including pharmacists, pharmacy technicians, interns, and preceptors, as well as facility licenses regulated by the Minnesota Board of Pharmacy. Verify credentials and check professional standing for anyone in the pharmacy field operating in Minnesota.

**Category:** Government & Public Data | **Website:** [pha.hlb.state.mn.us/#/onlineEntitySearch](https://pha.hlb.state.mn.us/#/onlineEntitySearch) | **Docs:** [parse.bot/marketplace/b6dd30aa-773c-4a57-adb4-04a17e92e026/pha-hlb-state-mn-us-api](https://parse.bot/marketplace/b6dd30aa-773c-4a57-adb4-04a17e92e026/pha-hlb-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-pha-hlb-state-mn-us-api-b6dd30aa/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### search_licenses

Search for licensees by last name and/or first name, optionally filtered by license type. Returns matching results with full license details including license number, type, status, issue date, and expiration date. Each result includes all licenses and registrations held by that entity. Makes one API call per result to fetch details (capped at 50 results). A homepage warmup request is made to establish session cookies before the search.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `first_name` | string | No | First name to search for. Supports wildcard (%) for partial matching. At least one of last_name or first_name must be provided. |
| `last_name` | string | No | Last name or organization name to search for. Supports wildcard (%) for partial matching (e.g. '%John%' matches any name containing John). At least one of last_name or first_name must be provided. |
| `license_type` | string | No | Filter results by license/registration type. When omitted, all license types are returned. |

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