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
| Name | Type | Required | Default | Description |
|---|---|---|---|---|
days | integer 1-90 | no | 7 | Days back from now(). Hard-capped at 90. |
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 | days > 90 or invalid query parameter. |
401 | unauthorized | Missing or invalid API key. |
429 | rate_limited | Quota or rate limit exceeded. |
500 | internal_error | Server error — retry with backoff. |