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
| Name | Type | Required | Default | Description |
|---|---|---|---|---|
date | string YYYY-MM-DD | no | — | UTC calendar date. Half-open range [date, date + 1day). |
limit | integer 1-500 | no | 25 | Page size. |
offset | integer ≥ 0 | no | 0 | Pagination 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
| Status | Code | Cause |
|---|---|---|
400 | bad_request | Invalid date format (use YYYY-MM-DD). |
401 | unauthorized | Missing or invalid API key. |
429 | rate_limited | Quota or rate limit exceeded. |
500 | internal_error | Server error — retry with backoff. |