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

# Credit Score

> Gets details information about the credit score for the company

This endpoint delivers the credit score for the company ranging from 0 to 100 where 1 should be interpreted
as the lowest and 100 the highest. 0 means that the credit score cannot be determined since
there are to many negative factors.

The credit score includes an array of strings containing a description of reasons of negative and positive
points.

Expect response times around 250 - 1000 ms because credit scoring happens in real-time based on
many parameters.


## OpenAPI

````yaml get /datasets/companies/{companyId}/credit-score
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}/credit-score:
    get:
      tags:
        - Companies
      summary: Credit Score
      description: Gets details information about the credit score for the company
      operationId: CompanyCreditScore
      parameters:
        - name: companyId
          in: path
          description: The company id
          required: true
          schema:
            type: integer
            format: int32
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/Ormeo_WebAPI_Models_Datasets_Company_CompanyCreditScore_Dto
components:
  schemas:
    Ormeo_WebAPI_Models_Datasets_Company_CompanyCreditScore_Dto:
      type: object
      properties:
        creditScore:
          type: integer
          format: int32
          nullable: true
        creditScoreDescriptions:
          type: array
          items:
            type: string
          nullable: true
      additionalProperties: false
  securitySchemes:
    ApiKey:
      type: apiKey
      name: x-api-key
      in: header

````