Loading...
Loading...
Integrate Florida business data directly into your applications with our
RESTful API. Data is updated daily.
Subscribe to the Professional plan ($49/mo), then create API keys from your dashboard under the API Keys section.
Use your API key to authenticate and start accessing business data.
Build powerful applications with up-to-date Florida business data.
curl "https://api.sneyk.com/api/v1/businesses/search?q=tech&city=Miami&limit=10&sort=-filing_date" \ -H "Authorization: Bearer YOUR_API_KEY"
Note: Use your API key (starts with sk_) or JWT token from POST /api/auth/login for authentication.
All API requests must include your API key in the Authorization header:
Create and manage API keys from your dashboard under the API Keys section. API keys start with sk_ and support granular permissions, allowed origin restrictions, and customizable rate limits. Alternatively, authenticate with a JWT token from POST /api/auth/login.
/api/v1/businesses/searchSearch Florida business records with advanced filtering, sorting, and pagination. Supports full-text search, geographic filters, entity type filters, and date range queries. Returns comprehensive business data including names, addresses, status, and filing dates.
| Name | Type | Description |
|---|---|---|
| q | string | Search query for business name (minimum 3 characters, e.g., 'acme', 'consulting') |
| city | string | Filter by city (e.g., 'Miami', 'Tampa', 'Jacksonville') |
| county | string | Filter by county (e.g., 'Miami-Dade', 'Broward', 'Orange') |
| zip | string | Filter by ZIP code (5 digits, e.g., '33101') |
| entity_type | string | Filter by entity type (e.g., 'Florida Limited Liability Company', 'Florida Profit Corporation') |
| status | string | Filter by business status: 'Active' or 'Inactive' |
| filing_date_from | string | Filter by filing date from (YYYY-MM-DD, e.g., '2024-01-01') |
| filing_date_to | string | Filter by filing date to (YYYY-MM-DD, e.g., '2024-12-31') |
| page | number | Page number (default: 1) |
| limit | number | Results per page (max 100, default: 25) |
| sort | string | Sort field with - for descending: business_name, -business_name, filing_date, -filing_date |
/api/v1/businesses/{id}Get detailed business information by document number including full address, registered agent details, principal address, and related filing records.
| Name | Type | Description |
|---|---|---|
| id | string | Business document number (e.g., 'P12000123456' for corporations, 'L12000123456' for LLCs) |
/api/v1/businesses/autocompleteFast autocomplete search optimized for typeahead functionality. Returns business name suggestions with minimal latency (<100ms typical response time).
| Name | Type | Description |
|---|---|---|
| q | string | Search query (minimum 2 characters, e.g., 'ac' for 'acme') |
| limit | number | Maximum suggestions to return (max 20, default: 10) |
/api/v1/exports/datesProfessional tier required. Get available date ranges for pre-generated daily export files. Use this to discover which dates have data before downloading.
| Name | Type | Description |
|---|---|---|
| entity_type | string | Filter by entity type: corporate, federal_lien, fictitious_name, general_partnership, mark |
| data_type | string | Filter by data type: filings, events, debtors, secured |
| format | string | Filter by file format: csv, xlsx, json |
/api/v1/exports/availableProfessional tier required. List all pre-generated daily export files available for download. Files are organized by entity type, data type, format, and date. Updated daily at 6 AM EST. Use this to discover what data is available before downloading.
| Name | Type | Description |
|---|---|---|
| entity_type | string | Filter by entity type: corporate, federal_lien, fictitious_name, general_partnership, mark |
| data_type | string | Filter by data type: filings, events, debtors, secured |
| format | string | Filter by file format: csv, xlsx, json |
| date | string | Filter by specific date (YYYYMMDD format, e.g., 20241002) |
/api/v1/exports/downloadProfessional tier required. Generate a secure pre-signed URL for downloading a specific export file using its S3 key. URLs are time-limited and automatically expire. Use this after getting the s3_key from /api/v1/exports/available.
| Name | Type | Description |
|---|---|---|
| s3_key | string | Full S3 key from /api/v1/exports/available response (e.g., 'raw/record_type=data_exports/state=FL/corporate/filings/csv/corporate_filings_20241002.csv') |
| expires_in | number | URL expiration in seconds (60-604800, default: 3600 = 1 hour) |
/api/v1/exports/datesProfessional tier required. Get a list of all available export dates for a specific entity type, data type, and format combination. Returns dates in YYYYMMDD format sorted newest first. Useful for discovering historical data availability.
| Name | Type | Description |
|---|---|---|
| entity_type | string | Entity type: corporate, federal_lien, fictitious_name, general_partnership, mark - REQUIRED |
| data_type | string | Data type: filings, events, debtors, secured - REQUIRED |
| format | string | File format: csv, xlsx, json - REQUIRED |
Rate limits are customizable per API key from your dashboard.
Need higher limits? Contact our team
RateLimitModern RFC format with remaining quota and reset time
X-RateLimit-*Legacy headers for backward compatibility
Retry-AfterSeconds to wait when rate limited (429 response)
Get started with our API today and integrate Florida business data into your applications.
Get Your API Key