Florida Business API
Endpoints

Search Registered Agents

Fuzzy-search Florida registered agents by name. Returns linked entity counts so you can spot high-volume registered agents.

GET /api/v1/agents/search

Search Florida registered agents by name (fuzzy via pg_trgm). Each result row aggregates: the agent's identity (name), the count of currently-linked entities (linked_entity_count), and the agent's primary mailing address.

Authentication

curl -H "X-API-Key: fbapi_live_..." \
  "https://api.floridabusinessapi.com/v1/agents/search?name=SMITH&limit=25"

Query Parameters

NameTypeRequiredDefaultDescription
namestring (1-200 chars)noAgent name (case-insensitive fuzzy match).
limitinteger 1-500no25Page size.
offsetinteger ≥ 0no0Pagination offset.

Response (200)

{
  "data": [
    {
      "agent_name": "JOHN SMITH",
      "linked_entity_count": 128,
      "city": "TAMPA",
      "state": "FL",
      "zip": "33602"
    }
  ],
  "pagination": { "limit": 25, "offset": 0, "total": 1, "has_more": false },
  "meta": { "request_id": "req_1234567890abcdef12345" }
}

Results are ranked by exact > prefix > trigram similarity (primary), then by linked_entity_count DESC (secondary), then by agent_name ASC.

Error Responses

StatusCodeCause
400bad_requestInvalid query parameters.
401unauthorizedMissing or invalid API key.
429rate_limitedQuota or rate limit exceeded.
500internal_errorServer error — retry with backoff.

On this page