Discover/myfloridalicense.com API
live

myfloridalicense.com APImyfloridalicense.com

Search and verify Florida veterinary licenses via the DBPR. Retrieve license status, expiration dates, addresses, and special qualifications with 3 endpoints.

Endpoints
3
Updated
3mo ago
Try it
City name to filter results.
Page number to retrieve.
Board code (26 for Veterinary Medicine).
Numeric county code (e.g., 11 for Alachua). Use get_search_metadata to see all codes.
License type code. Use get_search_metadata to see available codes. Known values: 2601 (Vet
api.parse.bot/scraper/8dcfcdd4-9fe0-4a61-a399-b25bff4ac22c/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Use it in your codegrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/8dcfcdd4-9fe0-4a61-a399-b25bff4ac22c/search_licenses?page=1&board=26&county=11&license_type=2601' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 3 totalclick to expand

Search for veterinary licenses by board, type, county, or city. Returns paginated results with 10 records per page.

Input
ParamTypeDescription
citystringCity name to filter results.
pageintegerPage number to retrieve.
boardstringBoard code (26 for Veterinary Medicine).
countystringNumeric county code (e.g., 11 for Alachua). Use get_search_metadata to see all codes.
license_typestringLicense type code. Use get_search_metadata to see available codes. Known values: 2601 (Veterinarian), 2602 (Veterinarian Establishment), 2603 (LTD Service Veterinary Practice), 2605 (Veterinarian CE Provider).
Response
{
  "type": "object",
  "fields": {
    "results": "array of license summary objects with license_type, name, license_id, name_type, license_number_rank, status_expires, and address",
    "pagination": "object containing current_page, total_pages, and total_records"
  },
  "sample": {
    "data": {
      "results": [
        {
          "name": "ABATO, ELIZABETH JOY",
          "address": "1929 N.W. 42ND PLACE  GAINESVILLE, FL 32605",
          "name_type": "Primary",
          "license_id": "737683B7FC100EC7178FFF2CDE6D3286",
          "license_type": "Veterinarian",
          "status_expires": "Eligible for Exam",
          "license_number_rank": "Vets"
        }
      ],
      "pagination": {
        "total_pages": 99,
        "current_page": 1,
        "total_records": 989
      }
    },
    "status": "success"
  }
}

About the myfloridalicense.com API

The myfloridalicense.com API exposes 3 endpoints for querying Florida Department of Business & Professional Regulation (DBPR) veterinary license records. The search_licenses endpoint lets you filter by board, license type, county, and city, returning paginated summaries with status, expiration, and address data. Detailed lookups via get_license_details include licensure dates, alternate names, and special qualifications tied to individual practitioners.

What the API Covers

This API targets veterinary licensing data maintained by Florida's DBPR under board code 26 (Veterinary Medicine). It covers license types such as 2601 (Veterinarian) and 2602 (Veterinary Establishment), and spans all Florida counties using numeric county codes. The get_search_metadata endpoint returns the full list of valid boards, license types, and county codes needed to construct well-formed queries against search_licenses.

Searching for Licenses

search_licenses accepts optional parameters: board, license_type, county (numeric code, e.g., 11 for Alachua), city, and page. Results are paginated at 10 records per page. Each result object includes license_type, name, license_id, name_type, license_number_rank, status_expires, and address. The license_id field from these results is the required input for detailed lookups.

Detailed License Records

get_license_details accepts a single license_id and returns a structured record with four sections: license_information (License Type, Rank, License Number, Status, Licensure Date, Expires), licensee_information (Name, Main Address, County), alternate_names (an array of name strings), and special_qualifications (an array of objects with qualification and effective fields). This level of detail supports verification workflows that require more than status alone.

Pagination and Metadata

Search results include a pagination object with current_page, total_pages, and total_records, making it straightforward to iterate through large result sets. Before querying, call get_search_metadata to retrieve current, valid codes for boards, counties, and license types — hardcoding these values risks query failures if DBPR updates its classification structure.

Common use cases
  • Verify a Florida veterinarian's active license status and expiration date before engaging their services
  • Build a directory of licensed veterinary establishments in a specific Florida county using county filter codes
  • Automate credential checks for vet staffing platforms by pulling license_information records in bulk
  • Monitor license renewals by periodically checking the status_expires field for practitioners in a given city
  • Cross-reference alternate_names to reconcile practitioner identity across multiple data sources
  • Pull special_qualifications data to identify practitioners with specific certifications or credentials
  • Compile county-level counts of active veterinary licenses for regulatory research or market analysis
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000250 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does myfloridalicense.com offer an official developer API?+
The DBPR does not publish an official public developer API for license data. The myfloridalicense.com site provides a web-based license search tool intended for manual use, not programmatic access.
What does `get_license_details` return beyond what `search_licenses` provides?+
search_licenses returns summary fields: name, license type, status/expiration, and address. get_license_details adds structured license_information (including Licensure Date and Rank), licensee_information with a full Main Address and County, an alternate_names array, and a special_qualifications array with qualification name and effective date — none of which appear in search results.
Does the API cover other professional license types beyond veterinary, such as medical or dental licenses?+
Not currently. The API is scoped to veterinary licenses under DBPR board code 26. Florida's DBPR regulates many other professions, but those boards are not covered by the current endpoints. You can fork this API on Parse and revise it to add search and detail endpoints for other board codes.
How current is the license data returned by the API?+
The data reflects what is publicly available on myfloridalicense.com at the time of the request. DBPR updates its records when licenses are renewed, revoked, or modified, but there is no guaranteed real-time sync. For compliance-critical applications, treat results as a starting point and cross-check against the DBPR site for the most recent status.
Can I search by practitioner name or license number directly?+
The search_licenses endpoint currently supports filtering by board, license_type, county, and city. Direct name or license number search is not exposed as a parameter. You can fork this API on Parse and revise it to add name or license number search if those query modes are needed.
Page content last updated . Spec covers 3 endpoints from myfloridalicense.com.
Related APIs in Government PublicSee all →
athletic.net API
Search and analyze cross country and track & field performance data across the US, including athlete profiles, meet results, team rosters, and rankings. Access comprehensive meet information, historical records, and state-level competition data to track athlete progress and discover top performers.
alienvault.com API
Search and analyze global threat intelligence data including indicators of compromise, threat pulses, and adversary profiles from the Open Threat Exchange community. Monitor recent security alerts and access detailed information about threats and adversaries to strengthen your cybersecurity defenses.
eprocurement.gov API
Monitor India's public procurement opportunities by accessing active tenders, bids closing today, global tenders, high-value contracts, and cancelled tenders from the Central Public Procurement Portal. Search tender details, browse participating organizations, and track real-time procurement statistics to stay informed on government contracting opportunities.
maradminbot.com API
Search and retrieve official Marine Corps MARADMIN announcements from Marines.mil, filtering by year, status, and keyword to stay updated on the latest personnel and administrative directives. Get detailed information about specific announcements by number or browse the most recent updates to ensure you never miss critical Marine Corps guidance.
13f.info API
13f.info API
illinoisreportcard.com API
Search and analyze comprehensive performance data for Illinois public schools, districts, and the state, including academic achievements in ELA, math, and science, student demographics, teacher and administrator information, school finances, and environmental conditions. Compare schools side-by-side, track growth metrics, and access accountability ratings and school highlights to make informed decisions about education quality.
customs.gov.mv API
Check import/export duties, tariff classifications, and exchange rates for Maldives customs compliance, plus track vessel movements, company registrations, and declaration statuses. Get real-time data directly from the official customs portal to streamline your trade and logistics operations.
bizapedia.com API
Search for detailed business profiles and contact information from Bizapedia, including company details, employee data, and communication channels. Access comprehensive business intelligence to research companies and build targeted contact lists.
MyFloridaLicense.com API – FL Vet License Data · Parse