Skip to main content
POST
/
api
/
idaho
/
companies
/
search
/idaho/companies/search
curl --request POST \
  --url https://api.anysite.io/api/idaho/companies/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "query": "<string>",
  "count": 2,
  "timeout": 300,
  "starts_with": false,
  "active_only": false
}
'
[
  {
    "file_number": "<string>",
    "@type": "@idaho_company_search_item",
    "name": "<string>",
    "filing_type": "<string>",
    "status": "<string>",
    "standing": "<string>",
    "filing_date": "<string>",
    "agent": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
query
string
required

Search query — business name or file number

Minimum string length: 1
Examples:

"Walmart"

"295132"

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
starts_with
boolean
default:false

Match names that start with the query instead of containing it

active_only
boolean
default:false

Return only active entities

Response

Successful Response

file_number
string
required
@type
string
default:@idaho_company_search_item
name
string | null
filing_type
string | null
status
string | null
standing
string | null
filing_date
string | null
agent
string | null