# Myfloridalicense — 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 verify Florida veterinary licenses issued by the Department of Business & Professional Regulation, retrieving detailed practitioner information, license status, and credentials. Look up veterinarians by name or license number to confirm their professional standing and qualifications.

**Category:** Government & Public Data | **Website:** [myfloridalicense.com/](https://myfloridalicense.com/) | **Docs:** [parse.bot/marketplace/9e3c2db7-c2c5-40a5-93e0-dceaf5bf6200/myfloridalicense-com-api](https://parse.bot/marketplace/9e3c2db7-c2c5-40a5-93e0-dceaf5bf6200/myfloridalicense-com-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-myfloridalicense-com-api-9e3c2db7/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_license_details

Get detailed information for a specific license using its internal ID obtained from search_licenses results. Returns licensee information (name, address, county), license information (type, rank, number, status, dates), special qualifications, and alternate names.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `license_id` | string | Yes | The internal ID of the license (from search_licenses results[*].license_id). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-myfloridalicense-com-api-9e3c2db7/get_license_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"license_id":"<string>"}'
```

### get_search_metadata

Get the list of available boards, license types, and counties for use as filter parameters in search_licenses. Returns all valid county codes and license type codes accepted by the search endpoint.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-myfloridalicense-com-api-9e3c2db7/get_search_metadata \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### search_licenses

Search for veterinary licenses by board, type, county, or city. Returns paginated results with 10 records per page. Results are ordered alphabetically by name. Each result includes a license_id that can be passed to get_license_details for full information.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `board` | string | No | Board code. Currently only 26 (Veterinary Medicine) is supported. |
| `city` | string | No | City name to filter results. |
| `county` | string | No | Numeric county code (e.g., 11 for Alachua). Use get_search_metadata to see all codes. |
| `license_type` | string | No | License type code. |
| `page` | integer | No | Page number to retrieve (1-based). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-myfloridalicense-com-api-9e3c2db7/search_licenses \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"board":"<string>","city":"<string>","county":"<string>","license_type":"<string>","page":"<integer>"}'
```
