Skip to main content
POST
/
api
/
missouri
/
companies
/
search
/missouri/companies/search
curl --request POST \
  --url https://api.anysite.io/api/missouri/companies/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "keyword": "<string>",
  "count": 500,
  "timeout": 300,
  "match_mode": "0"
}
'
[
  {
    "id": "<string>",
    "@type": "@missouri_company_search_item",
    "charter_number": "<string>",
    "name": "<string>",
    "legal_form": "<string>",
    "status": "<string>",
    "formed_date": "<string>",
    "registered_agent": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
keyword
string
required

Business name to search by

Required string length: 1 - 200
Examples:

"WALMART"

"EDWARD JONES"

"ANHEUSER-BUSCH"

count
integer
required

Max number of results to return

Required range: 1 <= x <= 1000
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
match_mode
enum<string>
default:0

How the keyword is matched against business names

Available options:
0,
1,
2,
3

Response

Successful Response

id
string
required
@type
string
default:@missouri_company_search_item
charter_number
string | null
name
string | null
status
string | null
formed_date
string | null
registered_agent
string | null