> ## Documentation Index
> Fetch the complete documentation index at: https://docs.tic.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Share register

> Gets whats known about the companys share register.

This endpoint contains any information we may know about the share-register. Remember this is not the
companies actual share-register. Instead this information is gathered from multiple sources such
as minutes where the voters register could be present or from authorities such as SCB (Statistikmyndigheten)
which collects information about parent companies.

If numberOfShares is empty / null it means we have no information about the actual number of shares but
typically it represents a parent company.

The endpoint helps gathering information from various sources for ownership investigations tailored for KYC
purposes. The purpose is not to visualize the full share-register.


## OpenAPI

````yaml get /datasets/companies/{companyId}/share-register
openapi: 3.0.4
info:
  title: TIC API
  description: ''
  version: v1
servers:
  - url: https://api.tic.io/
security:
  - ApiKey: []
tags:
  - name: BolagsverketStatistics
  - name: Companies
  - name: Companies_SE_
  - name: DocumentDelivery
  - name: EuropeanCommission
  - name: FinancialDocuments
  - name: Finansinspektionen
  - name: Free
  - name: ICA
  - name: ICAStatistics
  - name: Lists
  - name: Media
  - name: Persons
  - name: Persons_SE_
  - name: Properties_SE_
  - name: PTSPortings
  - name: Reseller
  - name: SearchBankruptciesReports
  - name: SearchCompanies
  - name: SearchCompaniesReports
  - name: SearchCompanyWorkplaces
  - name: SearchPerson
  - name: SearchProperties_SE_
  - name: SearchVehicles
  - name: TeamDocumentOrders
  - name: Teams
  - name: User
  - name: Vehicles_SE_
  - name: WatchLists
paths:
  /datasets/companies/{companyId}/share-register:
    get:
      tags:
        - Companies
      summary: Share register
      description: Gets whats known about the companys share register.
      operationId: CompanyShareRegister
      parameters:
        - name: companyId
          in: path
          description: The company id
          required: true
          schema:
            type: integer
            format: int32
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: >-
                    #/components/schemas/Ormeo_WebAPI_Models_Datasets_Company_CompanyShareRegister_Dto
components:
  schemas:
    Ormeo_WebAPI_Models_Datasets_Company_CompanyShareRegister_Dto:
      type: object
      properties:
        holderCompanyId:
          type: integer
          format: int32
          nullable: true
        holderCompanyMostRecentLegalName:
          type: string
          nullable: true
        holderPersonId:
          type: integer
          format: int32
          nullable: true
        numberOfShares:
          type: integer
          format: int32
          nullable: true
        numberOfVotes:
          type: integer
          format: int32
          nullable: true
        shareType:
          type: string
          nullable: true
        shareClass:
          type: string
          nullable: true
        paidUp:
          type: number
          format: double
          nullable: true
        nominalValuePerShareInUSD:
          type: number
          format: double
          nullable: true
        nominalValuePerShareInCurrencyCode:
          type: number
          format: double
          nullable: true
        currencyCode:
          type: string
          nullable: true
        representedBy:
          type: string
          nullable: true
      additionalProperties: false
  securitySchemes:
    ApiKey:
      type: apiKey
      name: x-api-key
      in: header

````