The list endpoint accepts several filters that you can mix and match. Every filter narrows the feed; combining them is an AND, so more filters means fewer, more targeted records.
Available filters
- county — restrict to one Florida county, e.g. county=Orange.
- license_type — restrict to a single license category.
- event_type — only new filings, renewals, or status changes.
- status — active, pending, expired, and so on.
- q — full-text search across business and legal names.
Example: new restaurant filings in one county
GET /v1/licenses?county=Hillsborough
&license_type=food-service
&event_type=new
&status=active
&limit=50A useful pattern is to save the filter set that defines your ideal customer, then reuse the exact same query both for backfilling history and for your webhook subscription. That guarantees your live alerts match the universe you analyzed.
Was this article helpful?
Still stuck? Our team is happy to help.