Florida Business API
Endpoints

Daily Filings

List Florida business entities filed on a specific date — backed by the Sunbiz daily file import.

GET /api/v1/filings/daily

List entities filed on a specific date. Backed by the DailyFiling table (one row per record per file) populated by the Phase 5 importer. Without a date parameter the route returns the most-recent ingested filings.

Authentication

curl -H "X-API-Key: fbapi_live_..." \
  "https://api.floridabusinessapi.com/v1/filings/daily?date=2026-06-24&limit=25"

Query Parameters

NameTypeRequiredDefaultDescription
datestring YYYY-MM-DDnoUTC calendar date. Half-open range [date, date + 1day).
limitinteger 1-500no25Page size.
offsetinteger ≥ 0no0Pagination offset.

Response (200)

{
  "data": [
    {
      "document_number": "L26000123456",
      "entity_name": "ACME LOGISTICS LLC",
      "entity_type": "FLAL",
      "filing_type": "FORMATION",
      "filing_date": "2026-06-24",
      "status": "active"
    }
  ],
  "pagination": { "limit": 25, "offset": 0, "total": 1, "has_more": false },
  "meta": { "request_id": "req_1234567890abcdef12345" }
}

Error Responses

StatusCodeCause
400bad_requestInvalid date format (use YYYY-MM-DD).
401unauthorizedMissing or invalid API key.
429rate_limitedQuota or rate limit exceeded.
500internal_errorServer error — retry with backoff.

On this page