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

# /iowa/companies

> Get an Iowa business entity by its business number from the Iowa Secretary of State business registry: legal name, status, entity type, state of incorporation, chapter, effective/filing/expiration dates, registered agent and principal-office addresses, the entity's names (legal, former and fictitious/DBA names), officers, stock classes and full filing history with document links.

**Price:** 20 credits

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



## OpenAPI

````yaml /openapi/company-registries.json post /api/iowa/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/iowa/companies:
    post:
      tags:
        - US
      summary: /iowa/companies
      description: >-
        Get an Iowa business entity by its business number from the Iowa
        Secretary of State business registry: legal name, status, entity type,
        state of incorporation, chapter, effective/filing/expiration dates,
        registered agent and principal-office addresses, the entity's names
        (legal, former and fictitious/DBA names), officers, stock classes and
        full filing history with document links.


        **Price:** 20 credits


        **⚠️ Common errors:** 412: Entity not found (no entity exists for this
        business number)
      operationId: __api_iowa_companies_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/IowaCompaniesPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/IowaCompany'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    IowaCompaniesPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        business_number:
          type: string
          minLength: 1
      type: object
      required:
        - business_number
    IowaCompany:
      properties:
        '@type':
          type: string
          default: IowaCompany
        business_number:
          type: string
        legal_name:
          type: string
        status:
          anyOf:
            - type: string
            - type: 'null'
        legal_form:
          anyOf:
            - type: string
            - type: 'null'
        state_of_inc:
          anyOf:
            - type: string
            - type: 'null'
        chapter:
          anyOf:
            - type: string
            - type: 'null'
        is_modified:
          anyOf:
            - type: boolean
            - type: 'null'
        expiration_date:
          anyOf:
            - type: string
            - type: 'null'
        effective_date:
          anyOf:
            - type: string
            - type: 'null'
        filing_date:
          anyOf:
            - type: string
            - type: 'null'
        registered_agent:
          anyOf:
            - $ref: '#/components/schemas/IowaCompanyAddress'
            - type: 'null'
        principal_office:
          anyOf:
            - $ref: '#/components/schemas/IowaCompanyAddress'
            - type: 'null'
        names:
          items:
            $ref: '#/components/schemas/IowaCompanyName'
          type: array
        officers:
          items:
            $ref: '#/components/schemas/IowaCompanyOfficer'
          type: array
        filings:
          items:
            $ref: '#/components/schemas/IowaCompanyFiling'
          type: array
        stock:
          items:
            $ref: '#/components/schemas/IowaCompanyStock'
          type: array
      type: object
      required:
        - business_number
        - legal_name
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    IowaCompanyAddress:
      properties:
        '@type':
          type: string
          default: IowaCompanyAddress
        address_type:
          anyOf:
            - type: string
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        address1:
          anyOf:
            - type: string
            - type: 'null'
        address2:
          anyOf:
            - type: string
            - type: 'null'
        city:
          anyOf:
            - type: string
            - type: 'null'
        state:
          anyOf:
            - type: string
            - type: 'null'
        zip:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    IowaCompanyName:
      properties:
        '@type':
          type: string
          default: IowaCompanyName
        cert_no:
          anyOf:
            - type: string
            - type: 'null'
        type:
          anyOf:
            - type: string
            - type: 'null'
        status:
          anyOf:
            - type: string
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        is_modified:
          anyOf:
            - type: boolean
            - type: 'null'
      type: object
    IowaCompanyOfficer:
      properties:
        '@type':
          type: string
          default: IowaCompanyOfficer
        name:
          anyOf:
            - type: string
            - type: 'null'
        address1:
          anyOf:
            - type: string
            - type: 'null'
        address2:
          anyOf:
            - type: string
            - type: 'null'
        city:
          anyOf:
            - type: string
            - type: 'null'
        state:
          anyOf:
            - type: string
            - type: 'null'
        zip:
          anyOf:
            - type: string
            - type: 'null'
        type:
          anyOf:
            - type: string
            - type: 'null'
        is_director:
          anyOf:
            - type: boolean
            - type: 'null'
      type: object
    IowaCompanyFiling:
      properties:
        '@type':
          type: string
          default: IowaCompanyFiling
        cert_no:
          anyOf:
            - type: string
            - type: 'null'
        document_url:
          anyOf:
            - type: string
            - type: 'null'
        page_count:
          anyOf:
            - type: integer
            - type: 'null'
        filing_date:
          anyOf:
            - type: string
            - type: 'null'
        effective_date:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    IowaCompanyStock:
      properties:
        '@type':
          type: string
          default: IowaCompanyStock
        type:
          anyOf:
            - type: string
            - type: 'null'
        stock_class:
          anyOf:
            - type: string
            - type: 'null'
        series:
          anyOf:
            - type: string
            - type: 'null'
        authorized_shares:
          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

````