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

# /missouri/companies

> Get a Missouri business entity by its charter number from the Missouri Secretary of State business registry: name, legal form, domesticity (domestic/foreign), home state, status, formation and expiration dates, duration, report-due date, business address, registered agent (name and address), all addresses, and the owners of fictitious-name registrations.

**Price:** 5 credits

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



## OpenAPI

````yaml /openapi/company-registries.json post /api/missouri/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/missouri/companies:
    post:
      tags:
        - US
      summary: /missouri/companies
      description: >-
        Get a Missouri business entity by its charter number from the Missouri
        Secretary of State business registry: name, legal form, domesticity
        (domestic/foreign), home state, status, formation and expiration dates,
        duration, report-due date, business address, registered agent (name and
        address), all addresses, and the owners of fictitious-name
        registrations.


        **Price:** 5 credits


        **⚠️ Common errors:** 412: Entity not found (no entity exists for this
        charter number)
      operationId: __api_missouri_companies_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/MissouriCompaniesPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/MissouriCompany'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    MissouriCompaniesPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        charter_number:
          type: string
          maxLength: 30
          minLength: 1
      type: object
      required:
        - charter_number
    MissouriCompany:
      properties:
        '@type':
          type: string
          default: MissouriCompany
        id:
          type: string
        charter_number:
          anyOf:
            - type: string
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        legal_form:
          anyOf:
            - type: string
            - type: 'null'
        domesticity:
          anyOf:
            - type: string
            - type: 'null'
        home_state:
          anyOf:
            - type: string
            - type: 'null'
        status:
          anyOf:
            - type: string
            - type: 'null'
        formed_date:
          anyOf:
            - type: string
            - type: 'null'
        expiration_date:
          anyOf:
            - type: string
            - type: 'null'
        duration:
          anyOf:
            - type: string
            - type: 'null'
        report_due_date:
          anyOf:
            - type: string
            - type: 'null'
        business_address:
          items:
            type: string
          type: array
          default: []
        registered_agent:
          anyOf:
            - $ref: '#/components/schemas/MissouriRegisteredAgent'
            - type: 'null'
        addresses:
          items:
            $ref: '#/components/schemas/MissouriAddress'
          type: array
          default: []
        owners:
          items:
            $ref: '#/components/schemas/MissouriOwner'
          type: array
          default: []
        officers:
          items:
            $ref: '#/components/schemas/MissouriOfficer'
          type: array
          default: []
      type: object
      required:
        - id
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    MissouriRegisteredAgent:
      properties:
        '@type':
          type: string
          default: MissouriRegisteredAgent
        name:
          anyOf:
            - type: string
            - type: 'null'
        agent_id:
          anyOf:
            - type: string
            - type: 'null'
        address:
          items:
            type: string
          type: array
          default: []
      type: object
    MissouriAddress:
      properties:
        '@type':
          type: string
          default: MissouriAddress
        type:
          anyOf:
            - type: string
            - type: 'null'
        lines:
          items:
            type: string
          type: array
          default: []
        since:
          anyOf:
            - type: string
            - type: 'null'
        to:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    MissouriOwner:
      properties:
        '@type':
          type: string
          default: MissouriOwner
        name:
          anyOf:
            - type: string
            - type: 'null'
        type:
          anyOf:
            - type: string
            - type: 'null'
        address:
          items:
            type: string
          type: array
          default: []
        since:
          anyOf:
            - type: string
            - type: 'null'
        to:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    MissouriOfficer:
      properties:
        '@type':
          type: string
          default: MissouriOfficer
        name:
          anyOf:
            - type: string
            - type: 'null'
        address:
          items:
            type: string
          type: array
          default: []
      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

````