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

# /california/companies/disclosures

> Get the publicly traded disclosure statement of a California corporation from the Secretary of State bizfile registry by entity number: bankruptcy and legal proceedings flags, independent auditor, board composition counts, and every disclosed director and executive officer with compensation, shares, options and bankruptcy/fraud flags.

**Price:** 1 credit

**⚠️ Common errors:** 412: This California entity files no publicly traded disclosure statement, or it does not exist



## OpenAPI

````yaml /openapi/company-registries.json post /api/california/companies/disclosures
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/california/companies/disclosures:
    post:
      tags:
        - US
      summary: /california/companies/disclosures
      description: >-
        Get the publicly traded disclosure statement of a California corporation
        from the Secretary of State bizfile registry by entity number:
        bankruptcy and legal proceedings flags, independent auditor, board
        composition counts, and every disclosed director and executive officer
        with compensation, shares, options and bankruptcy/fraud flags.


        **Price:** 1 credit


        **⚠️ Common errors:** 412: This California entity files no publicly
        traded disclosure statement, or it does not exist
      operationId: __api_california_companies_disclosures_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CaliforniaCompaniesDisclosuresPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/CaliforniaDisclosure'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    CaliforniaCompaniesDisclosuresPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        file_number:
          type: string
          minLength: 1
      type: object
      required:
        - file_number
    CaliforniaDisclosure:
      properties:
        '@type':
          type: string
          default: CaliforniaDisclosure
        file_number:
          type: string
        internal_id:
          type: integer
        name:
          anyOf:
            - type: string
            - type: 'null'
        has_bankruptcy:
          type: boolean
          default: false
        has_pending_legal_proceedings:
          type: boolean
          default: false
        is_liable_in_legal_proceedings:
          type: boolean
          default: false
        auditor:
          anyOf:
            - type: string
            - type: 'null'
        auditor_employed_by_corporation:
          anyOf:
            - type: string
            - type: 'null'
        female_directors:
          anyOf:
            - type: string
            - type: 'null'
        underrepresented_directors:
          anyOf:
            - type: string
            - type: 'null'
        officers:
          items:
            $ref: '#/components/schemas/CaliforniaDisclosureOfficer'
          type: array
          default: []
      type: object
      required:
        - file_number
        - internal_id
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    CaliforniaDisclosureOfficer:
      properties:
        '@type':
          type: string
          default: CaliforniaDisclosureOfficer
        name:
          type: string
        officer_title:
          anyOf:
            - type: string
            - type: 'null'
        compensation:
          anyOf:
            - type: number
            - type: 'null'
        shares:
          anyOf:
            - type: number
            - type: 'null'
        options:
          anyOf:
            - type: number
            - type: 'null'
        has_bankruptcy:
          type: boolean
          default: false
        has_fraud:
          type: boolean
          default: false
      type: object
      required:
        - 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

````