1KOMMA5° Configs API

The Configs API from 1KOMMA5° — 3 operation(s) for configs.

Operations 3

GET /api/v1/configs/{id} Get config by ID #
POST /api/v1/configs/{id}/send-offer Send offer to GetAccept for a configuration #
POST /api/v1/configs/{id}/lookup-energy-service-data Refresh a config's energy site info (grid/metering fees) from ESI. #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/1komma5-configs-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

1komma5-configs-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: 1komma5 Configs API
  version: '1.0'
  contact: {}
  description: 'Operations tagged Configs across 2 of this provider''s published API definitions: 1komma5-configs-api-openapi.yml, 1komma5-offer-tool-openapi-original.json. Each path carries the servers of the definition it was published in.'
servers:
- url: https://heartbeat.1komma5grad.com
  description: Base URL reconciled from apis.yml
tags:
- name: Configs
paths:
  /api/v1/configs/{id}:
    servers:
    - url: https://heartbeat.1komma5grad.com
      description: Base URL reconciled from apis.yml
    get:
      operationId: GetConfigController_get_v1
      parameters:
      - name: id
        required: true
        in: path
        schema:
          type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ConfigDetailsResponseDto'
      summary: Get config by ID
      tags:
      - Configs
  /api/v1/configs/{id}/send-offer:
    servers:
    - url: https://heartbeat.1komma5grad.com
      description: Base URL reconciled from apis.yml
    post:
      operationId: SendOfferController_sendOffer_v1
      parameters:
      - name: id
        required: true
        in: path
        schema:
          type: string
      - name: authorization
        required: true
        in: header
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SendOfferRequestDto'
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SendOfferResponseDto'
      security:
      - bearer: []
      summary: Send offer to GetAccept for a configuration
      tags:
      - Configs
  /api/v1/configs/{id}/lookup-energy-service-data:
    servers:
    - url: https://heartbeat.1komma5grad.com
      description: Base URL reconciled from apis.yml
    post:
      operationId: RefreshConfigEnergySiteInfoController_refresh_v1
      parameters:
      - name: id
        required: true
        in: path
        schema:
          type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                properties:
                  success:
                    type: boolean
      summary: Refresh a config's energy site info (grid/metering fees) from ESI.
      tags:
      - Configs
components:
  schemas:
    FinancingLimitsDto:
      type: object
      properties:
        isBlockedByAge:
          type: boolean
        maxInstallmentsPv:
          type:
          - number
          - 'null'
        maxInstallmentsHeat:
          type:
          - number
          - 'null'
        minInstallmentMonths:
          type:
          - number
          - 'null'
        combinedGrossLimitEur:
          type: number
        isCombinedGrossOverLimit:
          type: boolean
        isPvBlockedByCombinedGrossLimit:
          type: boolean
        isHeatBlockedByCombinedGrossLimit:
          type: boolean
        isPvAloneOverFinancingLimit:
          type: boolean
        isHeatAloneOverFinancingLimit:
          type: boolean
    ConfigDetailsResponseDto:
      type: object
      properties:
        id:
          type: string
        name:
          type: string
        isFrozen:
          type: boolean
        isGeneralVat:
          type: object
        site:
          type: object
        customer:
          type: object
        tenant:
          type: object
        paymentOption:
          type: object
        financing:
          $ref: '#/components/schemas/FinancingDto'
        crmLinks:
          type: object
        notes:
          type: object
        roof:
          type: object
        getAcceptDocuments:
          type: object
        showItemPrices:
          type: object
        pdf:
          type: array
          items:
            $ref: '#/components/schemas/OfferPdfDto'
        metrics:
          type: object
        offer:
          type: object
        products:
          type: object
        margins:
          type: object
        profitability:
          type: object
        emailPlaceholders:
          type: object
      required:
      - id
      - name
      - isFrozen
      - site
      - tenant
      - crmLinks
      - notes
      - roof
      - getAcceptDocuments
      - metrics
      - offer
      - products
      - margins
      - profitability
      - emailPlaceholders
    FinancingDto:
      type: object
      properties:
        creditOption:
          type: object
        creditInvestmentSum:
          type: object
        creditInstallments:
          type: object
        creditInterestRate:
          type: object
        creditMonthlyFee:
          type: object
        creditTotalMonthlyCosts:
          type: object
        creditInstallmentsPv:
          type: object
        creditInstallmentsHeat:
          type: object
        creditInterestRatePv:
          type: object
        creditInterestRateHeat:
          type: object
        creditTotalMonthlyCostsPv:
          type: object
        creditTotalMonthlyCostsHeat:
          type: object
        financingLimits:
          $ref: '#/components/schemas/FinancingLimitsDto'
    SendOfferRequestDto:
      type: object
      properties:
        offerType:
          type: string
          enum:
          - pv
          - heat
        withDataSheets:
          type: boolean
        shortVersion:
          type: boolean
        email:
          $ref: '#/components/schemas/SendOfferEmailDto'
      required:
      - offerType
      - withDataSheets
    SendOfferEmailDto:
      type: object
      properties:
        recipient:
          type: string
        ccAddress:
          type: string
        subject:
          type: string
        body:
          type: string
      required:
      - recipient
      - subject
      - body
    SendOfferResponseDto:
      type: object
      properties:
        success:
          type: boolean
        getAcceptDocumentId:
          type: string
      required:
      - success
    OfferPdfDto:
      type: object
      properties:
        id:
          type: number
        url:
          type: string
        createdAt:
          type: string
        updatedAt:
          type: string
        name:
          type: string
        fileName:
          type: string
        thumb:
          type: string
      required:
      - id
      - url
      - createdAt
      - updatedAt
      - name
      - fileName
      - thumb
x-refined-from:
- 1komma5-configs-api-openapi.yml
- 1komma5-offer-tool-openapi-original.json