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

# Access Interim Financial Reports

> Retrieves the latest quarterly or interim financial statements with period filtering.

<Note>
  Please refer to the [**Data Fields**](/api-reference/datadictionary) page to review the fields available under different access models.
</Note>

<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/LatestInterimStatements
openapi: 3.0.0
info:
  version: v2
  title: Credit Risk Monitor API
servers:
  - url: https://api.creditriskmonitor.com
security: []
paths:
  /v1/Business/LatestInterimStatements:
    get:
      tags:
        - Business
      summary: Gets the Latest Interim Statements for a Business
      operationId: Business_LatestInterimStatements
      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
        - name: count
          in: query
          description: The number of rows to return. If count is not sent returns all rows.
          required: false
          schema:
            format: int32
            type: integer
        - name: StandardQuarter
          in: query
          description: Gets Statements for the provided Quarter
          required: false
          schema:
            format: int32
            type: integer
        - name: StandardYear
          in: query
          description: Gets Statements for the provided Year
          required: false
          schema:
            format: int32
            type: integer
        - name: SortOrder
          in: query
          description: >-
            Sets the Sort Order of the results. Optional. D = Descending, A =
            Ascending
          required: false
          schema:
            type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/APIResponseContainer_APIFinancialsCollection_
            text/json:
              schema:
                $ref: >-
                  #/components/schemas/APIResponseContainer_APIFinancialsCollection_
            text/html:
              schema:
                $ref: >-
                  #/components/schemas/APIResponseContainer_APIFinancialsCollection_
            application/xml:
              schema:
                $ref: >-
                  #/components/schemas/APIResponseContainer_APIFinancialsCollection_
            text/xml:
              schema:
                $ref: >-
                  #/components/schemas/APIResponseContainer_APIFinancialsCollection_
      security:
        - Bearer: []
components:
  schemas:
    APIResponseContainer_APIFinancialsCollection_:
      description: ''
      type: object
      properties:
        Success:
          description: ''
          type: boolean
        Data:
          description: ''
          type: array
          items:
            $ref: '#/components/schemas/APIFinancials'
        ErrorCode:
          description: ''
          type: string
    APIFinancials:
      description: ''
      type: object
      properties:
        values:
          type: object
          additionalProperties:
            type: object
  securitySchemes:
    Bearer:
      type: http
      scheme: bearer
      description: >-
        Enter the Session Key with the `Bearer ` prefix, e.g. "Bearer
        abcde12345".

````