> ## 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/search

> Search Connecticut business entities in the Connecticut Secretary of the State business records registry by any field at once or by name, address, city, Business ALEI, filing number, principal name or agent name, with optional status, annual-report sub-status, domestic/foreign and legal-type filters and a formation-date range. Returns matching entities with Business ALEI, name, status and sub-status, annual-filing obligation, business address and ZIP, registered agent name and a preview of the principals.

**Price:** 10 credits

**⚠️ Common errors:** 412: The query is too broad for the registry to answer — narrow it down or add filters



## OpenAPI

````yaml /openapi/company-registries.json post /api/connecticut/companies/search
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/search:
    post:
      tags:
        - US
      summary: /connecticut/companies/search
      description: >-
        Search Connecticut business entities in the Connecticut Secretary of the
        State business records registry by any field at once or by name,
        address, city, Business ALEI, filing number, principal name or agent
        name, with optional status, annual-report sub-status, domestic/foreign
        and legal-type filters and a formation-date range. Returns matching
        entities with Business ALEI, name, status and sub-status, annual-filing
        obligation, business address and ZIP, registered agent name and a
        preview of the principals.


        **Price:** 10 credits


        **⚠️ Common errors:** 412: The query is too broad for the registry to
        answer — narrow it down or add filters
      operationId: __api_connecticut_companies_search_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ConnecticutCompaniesSearchPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ConnecticutCompanySearchItem'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    ConnecticutCompaniesSearchPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        query:
          type: string
          minLength: 1
        count:
          type: integer
          maximum: 10000
          minimum: 1
        search_by:
          $ref: '#/components/schemas/ConnecticutSearchBy'
          default: Any
        exact_name:
          type: boolean
          default: false
        status:
          items:
            $ref: '#/components/schemas/ConnecticutStatus'
          type: array
          default: []
        sub_status:
          items:
            $ref: '#/components/schemas/ConnecticutSubStatus'
          type: array
          default: []
        formation:
          items:
            $ref: '#/components/schemas/ConnecticutFormation'
          type: array
          default: []
        company_type:
          items:
            $ref: '#/components/schemas/ConnecticutCompanyType'
          type: array
          default: []
        formed_after:
          anyOf:
            - type: string
            - type: 'null'
        formed_before:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - query
        - count
    ConnecticutCompanySearchItem:
      properties:
        '@type':
          type: string
          default: ConnecticutCompanySearchItem
        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'
        requires_annual_filing:
          anyOf:
            - type: boolean
            - type: 'null'
        business_address:
          anyOf:
            - type: string
            - type: 'null'
        zip_code:
          anyOf:
            - type: string
            - type: 'null'
        agent_name:
          anyOf:
            - type: string
            - type: 'null'
        principal_count:
          anyOf:
            - type: integer
            - type: 'null'
        principals:
          items:
            type: string
          type: array
          default: []
      type: object
      required:
        - alei
        - name
        - account_id
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    ConnecticutSearchBy:
      type: string
      enum:
        - Any
        - Business Name
        - Business address
        - Business ALEI
        - Filing Number
        - Principal Name
        - Agent name
        - Business City
    ConnecticutStatus:
      type: string
      enum:
        - Active
        - Cancelled
        - Dissolved
        - Forfeited
        - Merged
        - Revoked
        - Withdrawn
        - Renunciated
        - Converted
        - Converted Out
        - Consolidation
        - Domesticated
        - Redomesticated
        - Recorded
        - Reserved
        - Removed
    ConnecticutSubStatus:
      type: string
      enum:
        - Current
        - Overdue
        - Delinquent
    ConnecticutFormation:
      type: string
      enum:
        - Domestic
        - Foreign
    ConnecticutCompanyType:
      type: string
      enum:
        - LLC
        - LLP
        - Stock
        - Non-Stock
        - B Corp
        - Bank Non-Stock
        - Bank Stock
        - Credit Union Non-Stock
        - Credit Union Stock
        - Insurance Non-Stock
        - Insurance Stock
        - Statutory Trust
        - Limited Partnership
        - General Partnerships
        - Special Chartered
        - Stock Specially Chartered
        - Non-Stock Specially Chartered
        - Religious
        - Cooperative Association
        - Cemetery
        - Unauthorized
        - Unknown
    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

````