Skip to main content
POST
/
api
/
kentucky
/
companies
/kentucky/companies
curl --request POST \
  --url https://api.anysite.io/api/kentucky/companies \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "ctr": "<string>",
  "timeout": 300
}
'
[
  {
    "ctr": "<string>",
    "name": "<string>",
    "@type": "@kentucky_company",
    "organization_number": "<string>",
    "is_profit": true,
    "company_type": "<string>",
    "industry": "<string>",
    "employee_count": "<string>",
    "county": "<string>",
    "status": "<string>",
    "standing": "<string>",
    "state": "<string>",
    "file_date": "<string>",
    "authority_date": "<string>",
    "organization_date": "<string>",
    "expiration_date": "<string>",
    "last_annual_report_date": "<string>",
    "share_count": "<string>",
    "principal_office": "<string>",
    "registered_agent": "<string>",
    "applicant_address": "<string>",
    "current_officers": [
      {
        "@type": "@kentucky_officer",
        "title": "<string>",
        "name": "<string>"
      }
    ],
    "initial_officers": [
      {
        "@type": "@kentucky_officer",
        "title": "<string>",
        "name": "<string>"
      }
    ],
    "assumed_names": [
      {
        "@type": "@kentucky_assumed_name",
        "name": "<string>",
        "status": "<string>",
        "expiration_date": "<string>"
      }
    ],
    "former_names": [
      {
        "@type": "@kentucky_former_name",
        "name": "<string>",
        "action": "<string>",
        "related_ctr": "<string>"
      }
    ]
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
ctr
string
required

Kentucky business entity control number (the ctr identifier from a search result)

Minimum string length: 1
Examples:

"978159"

"200788"

"283237"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

ctr
string
required
name
string
required
@type
string
default:@kentucky_company
organization_number
string | null
is_profit
boolean | null
company_type
string | null
industry
string | null
employee_count
string | null
county
string | null
status
string | null
standing
string | null
state
string | null
file_date
string | null
authority_date
string | null
organization_date
string | null
expiration_date
string | null
last_annual_report_date
string | null
share_count
string | null
principal_office
string | null
registered_agent
string | null
applicant_address
string | null
current_officers
KentuckyOfficer · object[]
initial_officers
KentuckyOfficer · object[]
assumed_names
KentuckyAssumedName · object[]
former_names
KentuckyFormerName · object[]