> ## Documentation Index
> Fetch the complete documentation index at: https://docs.anysite.io/llms.txt
> Use this file to discover all available pages before exploring further.

# /kentucky/companies

> Get a Kentucky business entity by its control number from the Kentucky Secretary of State business registry: organization number, legal name, profit/non-profit, company type, industry, employee band, county, status, standing, formation state, file/authority/organization/expiration dates, last annual report date, share count, principal-office address, registered agent, and the entity's current officers, initial officers, assumed names (DBAs) and former names.

**Price:** 10 credits

**⚠️ Common errors:** 412: Entity not found (no entity exists for this control number)



## OpenAPI

````yaml /openapi/company-registries.json post /api/kentucky/companies
openapi: 3.1.0
info:
  title: Any Site API
  description: >+
    Any Site API provides programmatic access to data from LinkedIn, Instagram,
    Twitter, and other platforms.


    ## Authentication


    All API endpoints require an `access-token` header with a valid API token.
    Tokens can be created in the [dashboard](https://app.anysite.io/).


    ## Pricing


    Each endpoint has a credit cost listed in its description. Credits are
    deducted from your token balance per request.

  version: 0.0.1
servers: []
security:
  - AccessToken: []
paths:
  /api/kentucky/companies:
    post:
      tags:
        - US
      summary: /kentucky/companies
      description: >-
        Get a Kentucky business entity by its control number from the Kentucky
        Secretary of State business registry: organization number, legal name,
        profit/non-profit, company type, industry, employee band, county,
        status, standing, formation state,
        file/authority/organization/expiration dates, last annual report date,
        share count, principal-office address, registered agent, and the
        entity's current officers, initial officers, assumed names (DBAs) and
        former names.


        **Price:** 10 credits


        **⚠️ Common errors:** 412: Entity not found (no entity exists for this
        control number)
      operationId: __api_kentucky_companies_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/KentuckyCompaniesPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/KentuckyCompany'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    KentuckyCompaniesPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        ctr:
          type: string
          minLength: 1
      type: object
      required:
        - ctr
    KentuckyCompany:
      properties:
        '@type':
          type: string
          default: KentuckyCompany
        ctr:
          type: string
        organization_number:
          anyOf:
            - type: string
            - type: 'null'
        name:
          type: string
        is_profit:
          anyOf:
            - type: boolean
            - type: 'null'
        company_type:
          anyOf:
            - type: string
            - type: 'null'
        industry:
          anyOf:
            - type: string
            - type: 'null'
        employee_count:
          anyOf:
            - type: string
            - type: 'null'
        county:
          anyOf:
            - type: string
            - type: 'null'
        status:
          anyOf:
            - type: string
            - type: 'null'
        standing:
          anyOf:
            - type: string
            - type: 'null'
        state:
          anyOf:
            - type: string
            - type: 'null'
        file_date:
          anyOf:
            - type: string
            - type: 'null'
        authority_date:
          anyOf:
            - type: string
            - type: 'null'
        organization_date:
          anyOf:
            - type: string
            - type: 'null'
        expiration_date:
          anyOf:
            - type: string
            - type: 'null'
        last_annual_report_date:
          anyOf:
            - type: string
            - type: 'null'
        share_count:
          anyOf:
            - type: string
            - type: 'null'
        principal_office:
          anyOf:
            - type: string
            - type: 'null'
        registered_agent:
          anyOf:
            - type: string
            - type: 'null'
        applicant_address:
          anyOf:
            - type: string
            - type: 'null'
        current_officers:
          items:
            $ref: '#/components/schemas/KentuckyOfficer'
          type: array
        initial_officers:
          items:
            $ref: '#/components/schemas/KentuckyOfficer'
          type: array
        assumed_names:
          items:
            $ref: '#/components/schemas/KentuckyAssumedName'
          type: array
        former_names:
          items:
            $ref: '#/components/schemas/KentuckyFormerName'
          type: array
      type: object
      required:
        - ctr
        - name
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    KentuckyOfficer:
      properties:
        '@type':
          type: string
          default: KentuckyOfficer
        name:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    KentuckyAssumedName:
      properties:
        '@type':
          type: string
          default: KentuckyAssumedName
        name:
          anyOf:
            - type: string
            - type: 'null'
        status:
          anyOf:
            - type: string
            - type: 'null'
        expiration_date:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    KentuckyFormerName:
      properties:
        '@type':
          type: string
          default: KentuckyFormerName
        name:
          anyOf:
            - type: string
            - type: 'null'
        action:
          anyOf:
            - type: string
            - type: 'null'
        related_ctr:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
        msg:
          type: string
        type:
          type: string
        input: {}
        ctx:
          type: object
      type: object
      required:
        - loc
        - msg
        - type
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````