Florida Business API
Endpoints

Recent Filings

List Florida business entities filed in the last N days (capped at 90). Sorted newest-first.

GET /api/v1/filings/recent

List entities filed within the last days days (default 7, max 90). Useful for periodically polling for new filings — for larger time windows the bulk export (Phase 6+) is the right tool.

Authentication

curl -H "X-API-Key: fbapi_live_..." \
  "https://api.floridabusinessapi.com/v1/filings/recent?days=30&limit=100"

Query Parameters

NameTypeRequiredDefaultDescription
daysinteger 1-90no7Days back from now(). Hard-capped at 90.
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_requestdays > 90 or invalid query parameter.
401unauthorizedMissing or invalid API key.
429rate_limitedQuota or rate limit exceeded.
500internal_errorServer error — retry with backoff.

On this page