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

# Get Control Energy Prices

> Get control energy prices (reBAP) for settlement calculations.

Returns balancing energy prices (Regelzonenübergreifender Bilanzausgleichsenergiepreis) received from TSOs via PRICAT messages.

Args:     tso_area: Optional filter by TSO control area (e.g., 10YDE-VE-------2)     month: Optional filter by month (YYYY-MM format)

Returns:     List of control energy price records with interval data



## OpenAPI

````yaml /openapi.json get /schedule-management/v1/mabis/control-energy-prices
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/control-energy-prices:
    get:
      tags:
        - mabis
      summary: Get Control Energy Prices
      description: >-
        Get control energy prices (reBAP) for settlement calculations.


        Returns balancing energy prices (Regelzonenübergreifender
        Bilanzausgleichsenergiepreis) received from TSOs via PRICAT messages.


        Args:     tso_area: Optional filter by TSO control area (e.g.,
        10YDE-VE-------2)     month: Optional filter by month (YYYY-MM format)


        Returns:     List of control energy price records with interval data
      operationId: >-
        get_control_energy_prices_schedule_management_v1_mabis_control_energy_prices_get
      parameters:
        - description: >-
            TSO control area EIC Y code filter. DE values: '10YDE-VE-------2'
            (50Hertz), '10YDE-RWENET---I' (Amprion), '10YDE-EON------1' (TenneT
            DE), '10YDE-ENBW-----N' (TransnetBW).
          in: query
          name: tso_area
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: >-
              TSO control area EIC Y code filter. DE values: '10YDE-VE-------2'
              (50Hertz), '10YDE-RWENET---I' (Amprion), '10YDE-EON------1'
              (TenneT DE), '10YDE-ENBW-----N' (TransnetBW).
            title: Tso Area
        - description: 'Month filter (YYYY-MM). Example: ''2026-01''.'
          in: query
          name: month
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: 'Month filter (YYYY-MM). Example: ''2026-01''.'
            title: Month
      responses:
        '200':
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/ControlEnergyPriceResponse'
                title: >-
                  Response Get Control Energy Prices Schedule Management V1
                  Mabis Control Energy Prices Get
                type: array
          description: Successful Response
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
          description: Validation Error
components:
  schemas:
    ControlEnergyPriceResponse:
      description: Response model for control energy prices (reBAP).
      properties:
        data:
          description: Price data points
          items:
            $ref: '#/components/schemas/ControlEnergyPriceDataPoint'
          title: Data
          type: array
        month:
          description: Month in YYYY-MM format
          title: Month
          type: string
        tso:
          description: TSO control area identifier
          title: Tso
          type: string
      required:
        - month
        - tso
      title: ControlEnergyPriceResponse
      type: object
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          title: Detail
          type: array
      title: HTTPValidationError
      type: object
    ControlEnergyPriceDataPoint:
      description: Single price data point.
      properties:
        amount:
          description: Price amount in EUR/MWh
          title: Amount
          type: number
        ts:
          description: Timestamp (ISO datetime)
          title: Ts
          type: string
      required:
        - amount
        - ts
      title: ControlEnergyPriceDataPoint
      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

````