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

# List Settlements

> List daily [Clearing Settlements](/api-reference/settlement-management/models/clearing-settlement) for a clearing period.

Each record represents one calendar day of MSCONS metering data received from the TSO/DSO. The `values` field contains the raw interval data as parsed from the MSCONS EDIFACT message.



## OpenAPI

````yaml /openapi.json get /schedule-management/v1/mabis/clearing-periods/{uid}/settlements
openapi: 3.1.0
info:
  title: Engrate API
  version: 1.0.0
servers:
  - url: https://api.engrate.io
security:
  - apiKeyAuth: []
paths:
  /schedule-management/v1/mabis/clearing-periods/{uid}/settlements:
    get:
      tags:
        - mabis
      summary: List Settlements
      description: >-
        List daily [Clearing
        Settlements](/api-reference/settlement-management/models/clearing-settlement)
        for a clearing period.


        Each record represents one calendar day of MSCONS metering data received
        from the TSO/DSO. The `values` field contains the raw interval data as
        parsed from the MSCONS EDIFACT message.
      operationId: >-
        list_settlements_schedule_management_v1_mabis_clearing_periods__uid__settlements_get
      parameters:
        - description: Clearing period unique identifier.
          in: path
          name: uid
          required: true
          schema:
            description: Clearing period unique identifier.
            format: uuid
            title: Uid
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/ClearingSettlementResponse'
                title: >-
                  Response List Settlements Schedule Management V1 Mabis
                  Clearing Periods  Uid  Settlements Get
                type: array
          description: Successful Response
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
          description: Validation Error
components:
  schemas:
    ClearingSettlementResponse:
      description: >-
        A [Clearing
        Settlement](/api-reference/settlement-management/models/clearing-settlement)
        representing one day's settlement data within a clearing period,
        containing raw MSCONS interval values.
      properties:
        clearing_period_uid:
          description: >-
            Parent [Clearing
            Period](/api-reference/settlement-management/models/clearing-period)
            identifier.
          title: Clearing Period Uid
          type: string
        created_ts:
          description: ISO 8601 datetime when this record was created.
          examples:
            - '2026-02-20T08:00:00+00:00'
          title: Created Ts
          type: string
        date:
          description: Settlement date in ISO 8601 format.
          examples:
            - '2026-01-15'
          title: Date
          type: string
        last_modified_ts:
          description: ISO 8601 datetime of the most recent update.
          examples:
            - '2026-02-20T08:00:00+00:00'
          title: Last Modified Ts
          type: string
        uid:
          description: Unique identifier for this settlement record.
          examples:
            - d6e7f8a9-b0c1-4d2e-8f3a-4b5c6d7e8f9a
          title: Uid
          type: string
        values:
          additionalProperties: true
          description: >-
            Raw interval values from the MSCONS message. Structure varies by
            message type.
          title: Values
          type: object
      required:
        - clearing_period_uid
        - created_ts
        - date
        - last_modified_ts
        - uid
        - values
      title: ClearingSettlementResponse
      type: object
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          title: Detail
          type: array
      title: HTTPValidationError
      type: object
    ValidationError:
      properties:
        ctx:
          title: Context
          type: object
        input:
          title: Input
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          title: Location
          type: array
        msg:
          title: Message
          type: string
        type:
          title: Error Type
          type: string
      required:
        - loc
        - msg
        - type
      title: ValidationError
      type: object
  securitySchemes:
    apiKeyAuth:
      in: header
      name: Authorization
      type: apiKey

````