Skip to main content
Glama
jlucasmcrell

Apify Public Data & Leads

US Multi-State Business Entity Search

us_business_entity_search
Read-only

Search multiple state business registries at once for a company name and get normalized records from Florida, Alabama, Iowa, and Wisconsin. Solves multi-state entity lookups when the state of registration is unknown.

Instructions

Search public Secretary of State business registries across Florida, Alabama, Iowa, and Wisconsin in one call, returning a normalized, source-tagged record per state match.

Behavioral Transparency:

  • Execution: Network call executed synchronously in the cloud via Apify Actor 'captainhandsome/us-business-entity-search'.

  • Side Effects: Reads public sources and creates a billed Actor run and dataset on your Apify account.

  • Authentication: Requires APIFY_TOKEN environment variable.

  • Latency & Limits: Typical run duration is 15-45 seconds without detail pages, longer with include_details enabled and with more states selected; timeout capped at 120 seconds.

Usage Guidelines:

  • When to use: Use when a company name lookup should span multiple states at once, or when the entity's state of registration is unknown among Florida, Alabama, Iowa, or Wisconsin.

  • When NOT to use: Do not use for a single known state where a dedicated tool exists and is faster (e.g. 'alabama_business_search' or 'florida_new_filings_search'), for states outside this coverage, for officer/person-name lookups (use 'florida_officer_search'), or for contractor licences.

  • Named alternatives: Use 'alabama_business_search' or 'florida_new_filings_search' for a single-state lookup, 'florida_officer_search' for a person-to-company search, or 'us_contractor_license_search'/'california_contractor_license_search' for licensed contractors rather than general business entities.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
statesNoState registries to search. Defaults to all four supported states; narrow this to speed up a run when the state is already known.
max_resultsNoMaximum number of normalized entity records to return and bill across all selected states. Defaults to 10.
search_queryYesFull or partial business name to search across the selected state registries (e.g. 'SMITH' or 'Smith Services LLC').
include_detailsNoWhen true, opens each result's detail page to add formation date, registered agent, officers, and both address blocks. Adds one request per record and per state; leave off for a fast lookup.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
runNo
errorNo
statusYes
resultsYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed18 schema fields changedv1.1.0
    • addedInput schema / additionalProperties
      Added value: +false
    • addedInput schema / properties / states / maxItems
      Added value: +100
    • addedOutput schema / properties / error
      Added value: +{
      +  "type": "object"
      +}
    • removedOutput schema / properties / results / description
      Removed value: -"Collection of normalized, source-tagged business-entity records matching the search query."
    • changedOutput schema / properties / results / items / properties / date_filed / description
      Previous value: -"Date the entity was filed, when the source registry records one."New value: +"Date the entity was filed with the Florida Division of Corporations."
    • addedOutput schema / properties / results / items / properties / date_filed / title
      Added value: +"Date filed"
    • addedOutput schema / properties / results / items / properties / entity_id / title
      Added value: +"Entity ID"
    • addedOutput schema / properties / results / items / properties / entity_name / title
      Added value: +"Entity name"
    • addedOutput schema / properties / results / items / properties / entity_type / title
      Added value: +"Entity type"
    • addedOutput schema / properties / results / items / properties / location / title
      Added value: +"Location"
    • changedOutput schema / properties / results / items / properties / registered_agent / description
      Previous value: -"Name of the entity's registered agent, where recorded (requires include_details on most sources)."New value: +"Name of the entity's Florida registered agent. Null when the state records no agent."
    • addedOutput schema / properties / results / items / properties / registered_agent / title
      Added value: +"Registered agent"
    • changedOutput schema / properties / results / items / properties / source / description
      Previous value: -"State registry that produced the record (florida, alabama, iowa, or wisconsin)."New value: +"State registry that produced the record."
    • addedOutput schema / properties / results / items / properties / source / title
      Added value: +"Source registry"
    • addedOutput schema / properties / results / items / properties / status / title
      Added value: +"Entity status"
    • addedOutput schema / properties / run
      Added value: +{
      +  "type": "object"
      +}
    • addedOutput schema / properties / status
      Added value: +{
      +  "enum": [
      +    "success",
      +    "empty_unverified",
      +    "partial",
      +    "error"
      +  ],
      +  "type": "string"
      +}
    • changedOutput schema / required
      Previous value: -[
      -  "results"
      -]New value: +[
      +  "results",
      +  "status"
      +]
  2. Addedv1.0.11

TDQS

A4.9/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The description goes well beyond the annotations: it discloses synchronous network execution via a specific Apify Actor, billing side effects (billed Actor run and dataset), the APIFY_TOKEN authentication requirement, and latency/timeout behavior. The annotations (readOnlyHint=true, destructiveHint=false) are consistent with the description's 'reads public sources' claim, and the description adds critical operational context the annotations cannot convey.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is well-organized with clear section headers (Behavioral Transparency, Usage Guidelines), front-loads the core purpose, and every sentence earns its place. It is longer than average but the length is justified by the operational and routing information it provides.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's complexity (4 params, multi-state orchestration, billing implications, output schema present), the description covers all essential aspects: what it does, when to use it, operational behavior, authentication, latency, and alternatives. The presence of an output schema means return-value details don't need to be in the description. Nothing an agent needs to invoke it correctly is missing.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so the schema already documents all four parameters well. The description adds value by explaining the trade-off between states/include_details and run duration, and by clarifying that max_results is billed across all selected states. It doesn't add much beyond the schema, but the schema is already rich, so a 4 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific verb ('Search'), a precise resource ('public Secretary of State business registries across Florida, Alabama, Iowa, and Wisconsin'), and the normalized, source-tagged output. It clearly distinguishes this multi-state tool from single-state siblings by naming the coverage and the aggregation behavior.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explicitly states when to use (multi-state or unknown state), when NOT to use (single known state, out-of-coverage states, officer/person lookups, contractor licenses), and names specific sibling alternatives for each exclusion. This is exemplary routing guidance.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.