> ## 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.

# /connecticut/companies

> Get a Connecticut business entity by its Business ALEI from the Connecticut Secretary of the State business records registry: legal name, status and sub-status, entity type, place of formation, formation date, NAICS code, annual-report obligation and due date, last report filed, name-reservation expiry, authorized shares and share classes, business and mailing addresses, registered agent (name, business, mailing and residence addresses), principals (name, title, addresses), former names and the full filing history with links to the digital copies of the filed documents.

**Price:** 1 credit

**⚠️ Common errors:** 412: Entity not found (well-formed but nonexistent Business ALEI)



## OpenAPI

````yaml /openapi/company-registries.json post /api/connecticut/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/connecticut/companies:
    post:
      tags:
        - US
      summary: /connecticut/companies
      description: >-
        Get a Connecticut business entity by its Business ALEI from the
        Connecticut Secretary of the State business records registry: legal
        name, status and sub-status, entity type, place of formation, formation
        date, NAICS code, annual-report obligation and due date, last report
        filed, name-reservation expiry, authorized shares and share classes,
        business and mailing addresses, registered agent (name, business,
        mailing and residence addresses), principals (name, title, addresses),
        former names and the full filing history with links to the digital
        copies of the filed documents.


        **Price:** 1 credit


        **⚠️ Common errors:** 412: Entity not found (well-formed but nonexistent
        Business ALEI)
      operationId: __api_connecticut_companies_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ConnecticutCompaniesPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ConnecticutCompany'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    ConnecticutCompaniesPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        business:
          type: string
          minLength: 1
      type: object
      required:
        - business
    ConnecticutCompany:
      properties:
        '@type':
          type: string
          default: ConnecticutCompany
        alei:
          type: string
        name:
          type: string
        account_id:
          type: string
        connecticut_alei:
          anyOf:
            - type: string
            - type: 'null'
        status:
          anyOf:
            - type: string
            - type: 'null'
        sub_status:
          anyOf:
            - type: string
            - type: 'null'
        company_type:
          anyOf:
            - type: string
            - type: 'null'
        place_of_formation:
          anyOf:
            - type: string
            - type: 'null'
        date_formed:
          anyOf:
            - type: string
            - type: 'null'
        naics_code:
          anyOf:
            - type: string
            - type: 'null'
        naics_sub_code:
          anyOf:
            - type: string
            - type: 'null'
        requires_annual_filing:
          anyOf:
            - type: boolean
            - type: 'null'
        annual_report_due:
          anyOf:
            - type: string
            - type: 'null'
        last_report_filed:
          anyOf:
            - type: string
            - type: 'null'
        reservation_expiration_date:
          anyOf:
            - type: string
            - type: 'null'
        total_shares:
          anyOf:
            - type: integer
            - type: 'null'
        business_address:
          anyOf:
            - type: string
            - type: 'null'
        mailing_address:
          anyOf:
            - type: string
            - type: 'null'
        office_in_jurisdiction_address:
          anyOf:
            - type: string
            - type: 'null'
        mailing_jurisdiction_address:
          anyOf:
            - type: string
            - type: 'null'
        service_of_process_address:
          anyOf:
            - type: string
            - type: 'null'
        agent_name:
          anyOf:
            - type: string
            - type: 'null'
        agent_business_address:
          anyOf:
            - type: string
            - type: 'null'
        agent_mailing_address:
          anyOf:
            - type: string
            - type: 'null'
        agent_residence_address:
          anyOf:
            - type: string
            - type: 'null'
        principals:
          items:
            $ref: '#/components/schemas/ConnecticutPrincipal'
          type: array
          default: []
        share_classes:
          items:
            $ref: '#/components/schemas/ConnecticutShareClass'
          type: array
          default: []
        name_history:
          items:
            $ref: '#/components/schemas/ConnecticutNameHistory'
          type: array
          default: []
        filings:
          items:
            $ref: '#/components/schemas/ConnecticutFiling'
          type: array
          default: []
      type: object
      required:
        - alei
        - name
        - account_id
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    ConnecticutPrincipal:
      properties:
        '@type':
          type: string
          default: ConnecticutPrincipal
        name:
          type: string
        principal_title:
          anyOf:
            - type: string
            - type: 'null'
        business_address:
          anyOf:
            - type: string
            - type: 'null'
        residence_address:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - name
    ConnecticutShareClass:
      properties:
        '@type':
          type: string
          default: ConnecticutShareClass
        share_class:
          anyOf:
            - type: string
            - type: 'null'
        share_count:
          anyOf:
            - type: integer
            - type: 'null'
        value_per_share:
          anyOf:
            - type: number
            - type: 'null'
      type: object
    ConnecticutNameHistory:
      properties:
        '@type':
          type: string
          default: ConnecticutNameHistory
        name:
          type: string
        filing_date:
          anyOf:
            - type: string
            - type: 'null'
        filing_number:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - name
    ConnecticutFiling:
      properties:
        '@type':
          type: string
          default: ConnecticutFiling
        filing_id:
          type: string
        business_filing_id:
          anyOf:
            - type: string
            - type: 'null'
        name:
          type: string
        filing_date:
          anyOf:
            - type: string
            - type: 'null'
        filing_time:
          anyOf:
            - type: string
            - type: 'null'
        page_count:
          anyOf:
            - type: integer
            - type: 'null'
        volume:
          anyOf:
            - type: integer
            - type: 'null'
        volume_type:
          anyOf:
            - type: string
            - type: 'null'
        start_page:
          anyOf:
            - type: string
            - type: 'null'
        document_url:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - filing_id
        - name
    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

````