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

# Names

> Gets the names of the company

This endpoint delivers historic and current names of the business but
also any particular names and other tradenames and their purposes.

The date companyNameDecidedAt represents the date when the business decided
to use the names and the firstSeentAtUtc represents the first date when
we received the information about the name.


## OpenAPI

````yaml get /datasets/companies/{companyId}/names
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}/names:
    get:
      tags:
        - Companies
      summary: Names
      description: Gets the names of the company
      operationId: CompanyNames
      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_CompanyName_Dto
components:
  schemas:
    Ormeo_WebAPI_Models_Datasets_Company_CompanyName_Dto:
      type: object
      properties:
        companyNamingType:
          $ref: '#/components/schemas/Ormeo_Library_Entities_CompanyNamingType'
        companyNamingTypeDescription:
          type: string
          nullable: true
          readOnly: true
        nameOrIdentifier:
          type: string
          nullable: true
        firstSeenAtUtc:
          type: string
          format: date-time
          nullable: true
        companyNameDecidedAt:
          type: string
          format: date-time
          nullable: true
        specialPurpose:
          type: string
          nullable: true
      additionalProperties: false
    Ormeo_Library_Entities_CompanyNamingType:
      enum:
        - legalName
        - commonName
        - tradingName
        - particularName
        - foreignLanguageName
        - other
        - legalNameSuggested
        - commonNameSuggested
        - tradingNameSuggested
        - particularNameSuggested
        - foreignLanguageNameSuggested
      type: string
  securitySchemes:
    ApiKey:
      type: apiKey
      name: x-api-key
      in: header

````