Florida Business API
Florida Registered Agent API — Search and Linked Entities
Florida Business API exposes registered-agent search with linked-entity counts — useful for service-of-process workflows, agent-portfolio analysis, and excluding common service providers from new-business lead feeds.
Example request
One curl call, one Bearer token. No SDK install required.
GET/v1/agents/search?name=northwest
curl -H "Authorization: Bearer fbapi_test_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" \
"https://api.floridabusinessapi.com/v1/agents/search?name=northwest"Example response
Envelope-shaped JSON with data, meta, and pagination cursors.
JSONagent-search.json
{
"data": [
{
"agent_name": "NORTHWEST REGISTERED AGENT LLC",
"linked_entity_count": 18742,
"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-25