Florida Business API

Florida Secretary of State API — entities, officers, registered agents, filings

Florida Business API surfaces public Florida Division of Corporations (the state agency under the Secretary of State) data as a developer-friendly REST + MCP API. Search every Florida LLC, corporation, partnership, registered agent, officer, and daily filing without scraping the state website.

Example request

One curl call, one Bearer token. No SDK install required.

GET/v1/entities/search?name=acme
curl -H "Authorization: Bearer fbapi_test_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" \
     "https://api.floridabusinessapi.com/v1/entities/search?name=acme"

Example response

Envelope-shaped JSON with data, meta, and pagination cursors.

JSONentity-search.json
{
  "data": [
    {
      "document_number": "L20000123456",
      "entity_name": "ACME EXAMPLE LLC",
      "entity_type": "FLAL",
      "status": "Active",
      "filing_date": "2026-04-15",
      "principal_address": {
        "city": "Tampa",
        "state": "FL",
        "zip": "33602"
      }
    }
  ],
  "pagination": {
    "limit": 25,
    "offset": 0,
    "total": 1,
    "has_more": false
  },
  "meta": {
    "request_id": "req_2NkVqJtX9bL7mFp1zG4eR"
  }
}

Ready to ship against Florida data?

Read the authentication docs then start hitting the API with your test key. Free tier: 1,000 calls/mo.

Last updated: 2026-06-29