Skip to content
New Venue Data

List Licenses

Fetch a paginated list of Florida license records. Filter by county, type, status, event type, date range, and more.

GET/v1/licenses

Returns a paginated list of Florida license records matching the provided filters.

NameTypeRequiredDescriptionExample
countystringOptionalFilter by county slug (e.g. miami-dade)miami-dade
license_typestringOptionalSRX, COP, BEV, FOOD_SERVICE, etc.SRX
statusstringOptionalapproved, pending, active, expiredapproved
event_typestringOptionalnew_filing, renewal, ownership_transfernew_filing
filed_afterstring (ISO 8601)OptionalReturn records filed on or after this date2024-12-01
filed_beforestring (ISO 8601)OptionalReturn records filed on or before this date2024-12-31
citystringOptionalFilter by city nameMiami
limitintegerOptionalRecords per page. Default 25, max 100.25
cursorstringOptionalPagination cursor from previous responsecur_eyJpZCI6Im...

Try It Live

Adjust the filters below and send a real request against a sandbox of the dataset. No API key required in the sandbox.

Try it liveGET /v1/licenses
curl "https://api.newvenuedata.com/v1/licenses?county=Miami-Dade&event_type=new_filing&limit=3" \
  -H "Authorization: Bearer ls_live_xxxxx"

Example Request

bash
curl -X GET "https://api.newvenuedata.com/v1/licenses" \
  -H "Authorization: Bearer ls_live_xxxxx" \
  -G -d "county=broward" \
  -d "event_type=new_filing" \
  -d "license_type=SRX" \
  -d "filed_after=2024-12-01" \
  -d "limit=25"
Was this page helpful?