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

# Addresses a partner asked us to use instead of the BDEW list



## OpenAPI

````yaml /setup/internal-openapi.json get /v1/process/market-partners/kontakte
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://{host}
    description: Deployed service
    variables:
      host:
        default: api.energy.nlead.ch
        description: >-
          The service hostname - n:lead provides it (see the Base URL on the API
          introduction page)
  - url: http://localhost:8000
    description: Local development
security: []
paths:
  /v1/process/market-partners/kontakte:
    get:
      summary: Addresses a partner asked us to use instead of the BDEW list
      operationId: get_kontakt_adressen_v1_process_market_partners_kontakte_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/KontaktAdressenListResponse'
      security:
        - APIKeyHeader: []
        - HTTPBearer: []
components:
  schemas:
    KontaktAdressenListResponse:
      properties:
        kontakte:
          items:
            $ref: '#/components/schemas/KontaktAdresseResponse'
          type: array
          title: Kontakte
      type: object
      required:
        - kontakte
      title: KontaktAdressenListResponse
    KontaktAdresseResponse:
      properties:
        mp_id:
          type: string
          title: Mp Id
        name:
          type: string
          title: Name
          default: ''
        email:
          type: string
          title: Email
        reason:
          type: string
          title: Reason
        noted_at:
          type: string
          title: Noted At
      type: object
      required:
        - mp_id
        - email
        - reason
        - noted_at
      title: KontaktAdresseResponse
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: X-API-Key
    HTTPBearer:
      type: http
      description: OIDC access token (Auth0 M2M)
      scheme: bearer

````