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

# /dc/companies

> Get a Washington DC business entity from the DLCP CorpOnline registry by its Initial File No. or business GUID: legal name, entity number, legal form, status, purpose, professional-service description, public benefit statement and provisions, formation, effective, commencement, dissolution and expiration dates, biennial-report status and due dates, contact email and phone, physical and mailing addresses, registered agent (name, individual/entity type, contact, addresses), the applicant behind a name reservation or registration, principals, directors, beneficial owners, incorporators, organizers and partners, NAICS codes, share classes, trade names registered under the entity, foreign jurisdiction of formation and election types.

**Price:** 1 credit

**⚠️ Common errors:** 412: Entity not found (well-formed but unknown Initial File No. or GUID)



## OpenAPI

````yaml /openapi/company-registries.json post /api/dc/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/dc/companies:
    post:
      tags:
        - US
      summary: /dc/companies
      description: >-
        Get a Washington DC business entity from the DLCP CorpOnline registry by
        its Initial File No. or business GUID: legal name, entity number, legal
        form, status, purpose, professional-service description, public benefit
        statement and provisions, formation, effective, commencement,
        dissolution and expiration dates, biennial-report status and due dates,
        contact email and phone, physical and mailing addresses, registered
        agent (name, individual/entity type, contact, addresses), the applicant
        behind a name reservation or registration, principals, directors,
        beneficial owners, incorporators, organizers and partners, NAICS codes,
        share classes, trade names registered under the entity, foreign
        jurisdiction of formation and election types.


        **Price:** 1 credit


        **⚠️ Common errors:** 412: Entity not found (well-formed but unknown
        Initial File No. or GUID)
      operationId: __api_dc_companies_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/DcCompaniesPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DcCompany'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    DcCompaniesPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        company:
          type: string
          minLength: 1
      type: object
      required:
        - company
    DcCompany:
      properties:
        '@type':
          type: string
          default: DcCompany
        id:
          type: string
        entity_number:
          anyOf:
            - type: string
            - type: 'null'
        name:
          type: string
        legal_form:
          anyOf:
            - type: string
            - type: 'null'
        region:
          anyOf:
            - type: string
            - type: 'null'
        status:
          anyOf:
            - type: string
            - type: 'null'
        is_nonprofit:
          anyOf:
            - type: boolean
            - type: 'null'
        is_non_filing_trade_name:
          anyOf:
            - type: boolean
            - type: 'null'
        trade_name_type:
          anyOf:
            - type: string
            - type: 'null'
        election_types:
          items:
            type: string
          type: array
          default: []
        purpose:
          anyOf:
            - type: string
            - type: 'null'
        professional_description:
          anyOf:
            - type: string
            - type: 'null'
        public_benefits:
          anyOf:
            - type: string
            - type: 'null'
        provisions:
          anyOf:
            - type: string
            - type: 'null'
        email:
          anyOf:
            - type: string
            - type: 'null'
        phone:
          anyOf:
            - type: string
            - type: 'null'
        incorporation_date:
          anyOf:
            - type: string
            - type: 'null'
        effective_date:
          anyOf:
            - type: string
            - type: 'null'
        commencement_date:
          anyOf:
            - type: string
            - type: 'null'
        reservation_date:
          anyOf:
            - type: string
            - type: 'null'
        dissolved_date:
          anyOf:
            - type: string
            - type: 'null'
        expiration_date:
          anyOf:
            - type: string
            - type: 'null'
        term_date:
          anyOf:
            - type: string
            - type: 'null'
        is_term_date_perpetual:
          anyOf:
            - type: boolean
            - type: 'null'
        status_changed_date:
          anyOf:
            - type: string
            - type: 'null'
        annual_report_status:
          anyOf:
            - type: string
            - type: 'null'
        annual_report_due_date:
          anyOf:
            - type: string
            - type: 'null'
        last_annual_report_filed_date:
          anyOf:
            - type: string
            - type: 'null'
        last_annual_report_due_date:
          anyOf:
            - type: string
            - type: 'null'
        has_members:
          anyOf:
            - type: boolean
            - type: 'null'
        foreign_business_name:
          anyOf:
            - type: string
            - type: 'null'
        foreign_jurisdiction:
          anyOf:
            - $ref: '#/components/schemas/DcForeignJurisdiction'
            - type: 'null'
        address:
          anyOf:
            - $ref: '#/components/schemas/DcAddress'
            - type: 'null'
        mailing_address:
          anyOf:
            - $ref: '#/components/schemas/DcAddress'
            - type: 'null'
        registered_agent:
          anyOf:
            - $ref: '#/components/schemas/DcRegisteredAgent'
            - type: 'null'
        applicant:
          anyOf:
            - $ref: '#/components/schemas/DcApplicant'
            - type: 'null'
        principals:
          items:
            $ref: '#/components/schemas/DcPerson'
          type: array
          default: []
        directors:
          items:
            $ref: '#/components/schemas/DcPerson'
          type: array
          default: []
        beneficial_owners:
          items:
            $ref: '#/components/schemas/DcPerson'
          type: array
          default: []
        incorporators:
          items:
            $ref: '#/components/schemas/DcPerson'
          type: array
          default: []
        organizers:
          items:
            $ref: '#/components/schemas/DcPerson'
          type: array
          default: []
        partners:
          items:
            $ref: '#/components/schemas/DcPartner'
          type: array
          default: []
        naics_codes:
          items:
            $ref: '#/components/schemas/DcNaicsCode'
          type: array
          default: []
        shares:
          items:
            $ref: '#/components/schemas/DcShare'
          type: array
          default: []
        assumed_names:
          items:
            $ref: '#/components/schemas/DcAssumedName'
          type: array
          default: []
      type: object
      required:
        - id
        - name
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    DcForeignJurisdiction:
      properties:
        '@type':
          type: string
          default: DcForeignJurisdiction
        country:
          anyOf:
            - type: string
            - type: 'null'
        state:
          anyOf:
            - type: string
            - type: 'null'
        city:
          anyOf:
            - type: string
            - type: 'null'
        entity_number:
          anyOf:
            - type: string
            - type: 'null'
        incorporation_date:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    DcAddress:
      properties:
        '@type':
          type: string
          default: DcAddress
        street:
          anyOf:
            - type: string
            - type: 'null'
        street2:
          anyOf:
            - type: string
            - type: 'null'
        city:
          anyOf:
            - type: string
            - type: 'null'
        state:
          anyOf:
            - type: string
            - type: 'null'
        province:
          anyOf:
            - type: string
            - type: 'null'
        zip:
          anyOf:
            - type: string
            - type: 'null'
        postal_code:
          anyOf:
            - type: string
            - type: 'null'
        country:
          anyOf:
            - type: string
            - type: 'null'
        county:
          anyOf:
            - type: string
            - type: 'null'
        full:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    DcRegisteredAgent:
      properties:
        '@type':
          type: string
          default: DcRegisteredAgent
        id:
          anyOf:
            - type: string
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        first_name:
          anyOf:
            - type: string
            - type: 'null'
        middle_name:
          anyOf:
            - type: string
            - type: 'null'
        last_name:
          anyOf:
            - type: string
            - type: 'null'
        suffix:
          anyOf:
            - type: string
            - type: 'null'
        name_type:
          anyOf:
            - type: string
            - type: 'null'
        is_commercial:
          anyOf:
            - type: boolean
            - type: 'null'
        business_id:
          anyOf:
            - type: string
            - type: 'null'
        email:
          anyOf:
            - type: string
            - type: 'null'
        phone:
          anyOf:
            - type: string
            - type: 'null'
        address:
          anyOf:
            - $ref: '#/components/schemas/DcAddress'
            - type: 'null'
        mailing_address:
          anyOf:
            - $ref: '#/components/schemas/DcAddress'
            - type: 'null'
      type: object
    DcApplicant:
      properties:
        '@type':
          type: string
          default: DcApplicant
        name:
          anyOf:
            - type: string
            - type: 'null'
        first_name:
          anyOf:
            - type: string
            - type: 'null'
        middle_name:
          anyOf:
            - type: string
            - type: 'null'
        last_name:
          anyOf:
            - type: string
            - type: 'null'
        org_name:
          anyOf:
            - type: string
            - type: 'null'
        name_type:
          anyOf:
            - type: string
            - type: 'null'
        email:
          anyOf:
            - type: string
            - type: 'null'
        address:
          anyOf:
            - $ref: '#/components/schemas/DcAddress'
            - type: 'null'
      type: object
    DcPerson:
      properties:
        '@type':
          type: string
          default: DcPerson
        name:
          anyOf:
            - type: string
            - type: 'null'
        first_name:
          anyOf:
            - type: string
            - type: 'null'
        middle_name:
          anyOf:
            - type: string
            - type: 'null'
        last_name:
          anyOf:
            - type: string
            - type: 'null'
        suffix:
          anyOf:
            - type: string
            - type: 'null'
        role:
          anyOf:
            - type: string
            - type: 'null'
        other_title:
          anyOf:
            - type: string
            - type: 'null'
        name_type:
          anyOf:
            - type: string
            - type: 'null'
        email:
          anyOf:
            - type: string
            - type: 'null'
        phone:
          anyOf:
            - type: string
            - type: 'null'
        address:
          anyOf:
            - $ref: '#/components/schemas/DcAddress'
            - type: 'null'
        mailing_address:
          anyOf:
            - $ref: '#/components/schemas/DcAddress'
            - type: 'null'
      type: object
    DcPartner:
      properties:
        '@type':
          type: string
          default: DcPartner
        name:
          anyOf:
            - type: string
            - type: 'null'
        first_name:
          anyOf:
            - type: string
            - type: 'null'
        middle_name:
          anyOf:
            - type: string
            - type: 'null'
        last_name:
          anyOf:
            - type: string
            - type: 'null'
        suffix:
          anyOf:
            - type: string
            - type: 'null'
        role:
          anyOf:
            - type: string
            - type: 'null'
        other_title:
          anyOf:
            - type: string
            - type: 'null'
        name_type:
          anyOf:
            - type: string
            - type: 'null'
        email:
          anyOf:
            - type: string
            - type: 'null'
        phone:
          anyOf:
            - type: string
            - type: 'null'
        address:
          anyOf:
            - $ref: '#/components/schemas/DcAddress'
            - type: 'null'
        mailing_address:
          anyOf:
            - $ref: '#/components/schemas/DcAddress'
            - type: 'null'
        business_id:
          anyOf:
            - type: string
            - type: 'null'
        business_entity_number:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    DcNaicsCode:
      properties:
        '@type':
          type: string
          default: DcNaicsCode
        code:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    DcShare:
      properties:
        '@type':
          type: string
          default: DcShare
        stock_class:
          anyOf:
            - type: string
            - type: 'null'
        series_class:
          anyOf:
            - type: string
            - type: 'null'
        share_count:
          anyOf:
            - type: integer
            - type: 'null'
        share_value:
          anyOf:
            - type: number
            - type: 'null'
        operating_capital:
          anyOf:
            - type: number
            - type: 'null'
      type: object
    DcAssumedName:
      properties:
        '@type':
          type: string
          default: DcAssumedName
        id:
          anyOf:
            - type: string
            - type: 'null'
        entity_number:
          anyOf:
            - type: string
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        status:
          anyOf:
            - type: string
            - type: 'null'
        effective_date:
          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

````