Florida Business API
Endpoints

New-Business Lead Feed

Filtered feed of newly-registered Florida businesses by county, city, entity type, and filing date range. Lead Feed tier.

GET /api/v1/leads/new-businesses

Lead Feed tier endpoint. Returns newly-registered Florida businesses filtered by county (FL only), city, entity type, and filing date range. The county filter uses a dual branch: fast equality on Address.county when that column is populated, with a ZIP-set fallback (Address.postalCode = ANY($zips)) for rows where county is NULL.

Authentication

curl -H "X-API-Key: fbapi_live_..." \
  "https://api.floridabusinessapi.com/v1/leads/new-businesses?county=Hillsborough&entity_type=FLAL&date_from=2026-06-01&limit=100"

Query Parameters

NameTypeRequiredDefaultDescription
countystring (max 40 chars)noFL county name (case-insensitive; "County" suffix stripped).
citystring (max 60 chars)noCity name (case-insensitive).
entity_typestring (max 20 chars)noFL entity type code, e.g. FLAL. Send UPPERCASE.
date_fromstring YYYY-MM-DDnoInclusive lower bound on filing date.
date_tostring YYYY-MM-DDnoInclusive upper bound on filing date (half-open: < date_to + 1d).
limitinteger 1-500no25Page size.
offsetinteger ≥ 0no0Pagination offset.

Response (200)

{
  "data": [
    {
      "document_number": "L26000123456",
      "entity_name": "ACME LOGISTICS LLC",
      "entity_type": "FLAL",
      "filing_date": "2026-06-24",
      "city": "TAMPA",
      "state": "FL",
      "zip": "33602",
      "county": "Hillsborough"
    }
  ],
  "pagination": { "limit": 25, "offset": 0, "total": 1, "has_more": false },
  "meta": { "request_id": "req_1234567890abcdef12345" }
}

Sorted by filing_date DESC (most recent first), then document_number ASC for stable pagination.

Error Responses

StatusCodeCause
400bad_requestInvalid query parameters / date format.
401unauthorizedMissing or invalid API key.
429rate_limitedQuota or rate limit exceeded.
500internal_errorServer error — retry with backoff.

On this page