Skip to main content
POST
/
api
/
utah
/
companies
/
search
/utah/companies/search
curl --request POST \
  --url https://api.anysite.io/api/utah/companies/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "query": "<string>",
  "count": 2,
  "timeout": 300,
  "include_inactive": true
}
'
[
  {
    "entity_number": "<string>",
    "business_id": "<string>",
    "@type": "@utah_company_search_item",
    "name": "<string>",
    "status": "<string>",
    "status_details": "<string>",
    "legal_form": "<string>",
    "subtype": "<string>",
    "filing_date": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
query
string
required

Company name to search for

Minimum string length: 1
Examples:

"ZILLOW"

"SMITH"

count
integer
required

Max number of results to return

Required range: x >= 1
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
include_inactive
boolean
default:true

Include inactive entities in the results

Response

Successful Response

entity_number
string
required
business_id
string
required
@type
string
default:@utah_company_search_item
name
string | null
status
string | null
status_details
string | null
subtype
string | null
filing_date
string | null