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

# Get Market Partner Overview

> Market communication status for every DSO in the BDEW registry,
grouped by control area: PARTIN out, acknowledgment (CONTRL/APERAK) in,
PARTIN in, Zuordnungsermaechtigung out - derived live from the MakoFlow
outbox and inbox.



## OpenAPI

````yaml /setup/internal-openapi.json get /v1/process/market-partners/overview
openapi: 3.1.0
info:
  title: n:lead Scheduling Bridge — Internal API
  version: 0.4.0
  description: >-
    Internal API of the n:lead scheduling bridge: the process endpoints that
    drive the day-ahead pipeline (aggregate, publish the open position, submit
    schedules, generate forecasts, orchestrate) and the operator console
    endpoints. Requires the process API key; not for customer use.
servers:
  - url: >-
      https://nleadbridge-app.lemonisland-7d6503d3.germanywestcentral.azurecontainerapps.io
    description: Deployed service
  - url: http://localhost:8000
    description: Local development
security: []
paths:
  /v1/process/market-partners/overview:
    get:
      summary: Get Market Partner Overview
      description: |-
        Market communication status for every DSO in the BDEW registry,
        grouped by control area: PARTIN out, acknowledgment (CONTRL/APERAK) in,
        PARTIN in, Zuordnungsermaechtigung out - derived live from the MakoFlow
        outbox and inbox.
      operationId: get_market_partner_overview_v1_process_market_partners_overview_get
      parameters:
        - name: lookback_days
          in: query
          required: false
          schema:
            type: integer
            maximum: 730
            minimum: 1
            default: 90
            title: Lookback Days
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: object
                additionalProperties: true
                title: >-
                  Response Get Market Partner Overview V1 Process Market
                  Partners Overview Get
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - APIKeyHeader: []
        - HTTPBearer: []
components:
  schemas:
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: X-API-Key
    HTTPBearer:
      type: http
      description: OIDC access token (Auth0 M2M)
      scheme: bearer

````