{
  "openapi": "3.1.0",
  "info": {
    "title": "ELC Partnership Builder API",
    "version": "1.0.0",
    "description": "Read-only REST layer over the ELC Partnership Builder: qualify, match, customize and plan a company partnership with Engineering Leaders Community (3,100+ engineering leaders, Central Europe). Prices come from the published catalog the website renders. Sending an offer runs through the MCP server at /mcp/partnership or the chat at /partner/chat/, where the 16% AI-channel discount applies.",
    "contact": {
      "name": "Engineering Leaders Community",
      "url": "https://www.engineeringleaders.io/partner/",
      "email": "weare@engineeringleaders.io"
    },
    "license": {
      "name": "MIT"
    }
  },
  "servers": [
    {
      "url": "https://www.engineeringleaders.io/mcp/partnership/api"
    }
  ],
  "paths": {
    "/options": {
      "get": {
        "summary": "How company membership works + the two qualifying questions",
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        }
      }
    },
    "/match": {
      "get": {
        "summary": "Match a package to a goal and budget",
        "parameters": [
          {
            "name": "goal",
            "in": "query",
            "required": true,
            "description": "talent | hiring | product | newsite",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "budget",
            "in": "query",
            "required": true,
            "description": "free | start | solid | exclusivity",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        }
      }
    },
    "/customize": {
      "get": {
        "summary": "Recompute a basket: authoritative total, discount, what could be added",
        "parameters": [
          {
            "name": "preset_id",
            "in": "query",
            "required": true,
            "description": "free | leadership-pilot | pilot-meetup | orbit | nebula | supernova | quasar",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "item_ids",
            "in": "query",
            "required": true,
            "description": "comma-separated item ids toggled ON",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        }
      }
    },
    "/journey": {
      "get": {
        "summary": "Deterministic 12-month plan for a basket",
        "parameters": [
          {
            "name": "preset_id",
            "in": "query",
            "required": true,
            "description": "free | leadership-pilot | pilot-meetup | orbit | nebula | supernova | quasar",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "item_ids",
            "in": "query",
            "required": true,
            "description": "comma-separated item ids",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "start_month",
            "in": "query",
            "required": true,
            "description": "YYYY-MM",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        }
      }
    }
  },
  "_source": "https://www.engineeringleaders.io/partner/?ref=api"
}