Production index loading:Florida Business API is currently importing the full Florida business entity dataset. Docs, sample data, and API onboarding are available now; full live search results will expand as indexing completes.View status →
Florida Business API

Florida Officer Search API — Cross-Entity Officer Lookup

Look up an officer once, see every Florida entity they are associated with. Officer search uses pg_trgm fuzzy ranking with exact/prefix/trigram tiers, ranked by number of associated entities.

Example request

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

GET/v1/officers/search?name=john+smith
curl -H "Authorization: Bearer fbapi_test_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" \
     "https://api.floridabusinessapi.com/v1/officers/search?name=john+smith"

Example response

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

JSONofficer-search.json
{
  "data": [
    {
      "officer_name": "JOHN SMITH",
      "title_code": "MGR",
      "entity_count": 4,
      "entities": [
        {
          "document_number": "L20000123456",
          "entity_name": "ACME EXAMPLE LLC"
        }
      ]
    }
  ],
  "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-25