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

# Get Business Description Overview

> Obtains a concise summary text providing key business information.

<Note>
  Use the [**<u>Login</u>**<u> endpoint</u>](/api-reference/user/logs-a-user-in) to retrieve the **`SessionKey`**, then include it in the **Authorization** field for authentication.
</Note>


## OpenAPI

````yaml get /v1/Business/Summary
openapi: 3.0.0
info:
  version: v2
  title: Credit Risk Monitor API
servers:
  - url: https://api.creditriskmonitor.com
security: []
paths:
  /v1/Business/Summary:
    get:
      tags:
        - Business
      summary: Gets the summary text for a Business.
      operationId: Business_GetBusinessSummary
      parameters:
        - name: id
          in: query
          description: Business ID
          required: false
          schema:
            format: int32
            type: integer
        - name: CustomerId
          in: query
          description: >-
            If you are a Trade Provider you can use your CustomerId to idenfity
            a Business with the CustomerId parameter.
          required: false
          schema:
            type: string
        - name: SupplierId
          in: query
          description: >-
            If you have a Supplier List you can use your SupplierId to identify
            a Business with the SupplierId parameter.
          required: false
          schema:
            type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/APIResponseContainer_APIBusinessSummary_'
            text/json:
              schema:
                $ref: '#/components/schemas/APIResponseContainer_APIBusinessSummary_'
            text/html:
              schema:
                $ref: '#/components/schemas/APIResponseContainer_APIBusinessSummary_'
            application/xml:
              schema:
                $ref: '#/components/schemas/APIResponseContainer_APIBusinessSummary_'
            text/xml:
              schema:
                $ref: '#/components/schemas/APIResponseContainer_APIBusinessSummary_'
      security:
        - Bearer: []
components:
  schemas:
    APIResponseContainer_APIBusinessSummary_:
      description: ''
      type: object
      properties:
        Success:
          description: ''
          type: boolean
        Data:
          $ref: '#/components/schemas/APIBusinessSummary'
        ErrorCode:
          description: ''
          type: string
    APIBusinessSummary:
      description: ''
      type: object
      properties:
        DateFiled:
          format: date-time
          description: Date this Summary was filed
          type: string
        Text:
          description: Text of the Summary
          type: string
  securitySchemes:
    Bearer:
      type: http
      scheme: bearer
      description: >-
        Enter the Session Key with the `Bearer ` prefix, e.g. "Bearer
        abcde12345".

````