> ## 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 Exchange Priority Balance Groups

> List all balance groups with exchange priority (Börsenvorrang).

These balance groups have priority per clause 12.b of the Bilanzkreisvertrag. When scheduling conflicts occur (ANO), the exchange party's values may be imposed by the TSO.



## OpenAPI

````yaml /openapi.json get /schedule-management/v1/reference/exchange-priority-balance-groups
openapi: 3.1.0
info:
  title: Engrate API
  version: 1.0.0
servers:
  - url: https://api.engrate.io
security:
  - apiKeyAuth: []
paths:
  /schedule-management/v1/reference/exchange-priority-balance-groups:
    get:
      tags:
        - schedules
      summary: List Exchange Priority Balance Groups
      description: >-
        List all balance groups with exchange priority (Börsenvorrang).


        These balance groups have priority per clause 12.b of the
        Bilanzkreisvertrag. When scheduling conflicts occur (ANO), the exchange
        party's values may be imposed by the TSO.
      operationId: >-
        list_exchange_priority_balance_groups_schedule_management_v1_reference_exchange_priority_balance_groups_get
      responses:
        '200':
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/ExchangePriorityBalanceGroupResponse'
                title: >-
                  Response List Exchange Priority Balance Groups Schedule
                  Management V1 Reference Exchange Priority Balance Groups Get
                type: array
          description: Successful Response
components:
  schemas:
    ExchangePriorityBalanceGroupResponse:
      description: >-
        A balance group that has exchange priority (Börsenvorrang) per
        Bilanzkreisvertrag clause 12.b.
      properties:
        eic_code:
          description: EIC X code of the exchange balance group.
          examples:
            - 11XEPEXSPOT----W
          title: Eic Code
          type: string
        exchange_name:
          description: Name of the energy exchange (e.g. EPEX SPOT, EEX).
          examples:
            - EPEX SPOT SE
          title: Exchange Name
          type: string
        has_exchange_priority:
          default: true
          description: Always `true` for entries in this list.
          title: Has Exchange Priority
          type: boolean
      required:
        - eic_code
        - exchange_name
      title: ExchangePriorityBalanceGroupResponse
      type: object
  securitySchemes:
    apiKeyAuth:
      in: header
      name: Authorization
      type: apiKey

````