Skip to main content
POST
/
api
/
arkansas
/
companies
/
search
/arkansas/companies/search
curl --request POST \
  --url https://api.anysite.io/api/arkansas/companies/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "query": "<string>",
  "count": 2,
  "timeout": 300,
  "field": "name",
  "agent_city": "LITTLE ROCK",
  "agent_state": "AR"
}
'
[
  {
    "filing_number": "<string>",
    "@type": "@arkansas_company_search_item",
    "name": "<string>",
    "city": "<string>",
    "state": "<string>",
    "status": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
query
string
required

Search term to match

Minimum string length: 1
Examples:

"WALMART"

"TYSON"

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
field
enum<string>
default:name

Which field to match the query against

Available options:
name,
fictitious_name,
agent
corp_type
enum<string> | null

Restrict results to a single entity type

Available options:
15,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
13,
14,
16,
17,
18,
19,
20,
21,
22,
23,
24,
25,
30,
31,
320,
330,
380,
390,
370
agent_city
string | null

Restrict registered-agent matches to this city

Example:

"LITTLE ROCK"

agent_state
string | null

Restrict registered-agent matches to this two-letter state code

Example:

"AR"

Response

Successful Response

filing_number
string
required
@type
string
default:@arkansas_company_search_item
name
string | null
city
string | null
state
string | null
status
string | null