{
  "openapi": "3.1.0",
  "info": {
    "title": "Maheat Wrestling Catalog API",
    "version": "1.0.0",
    "description": "Catalog and quote-request surface for Maheat Wrestling. Primary intake is by email at joe@joemahoney.io; this API documents the same intake for agents."
  },
  "servers": [
    {
      "url": "https://maheat.shop/api/v1"
    }
  ],
  "paths": {
    "/catalog": {
      "get": {
        "summary": "List the wrestling-gear product lines",
        "responses": {
          "200": {
            "description": "Product-line catalog (singlets, headgear, shoes, training gear)"
          }
        }
      }
    },
    "/quote-request": {
      "post": {
        "summary": "Submit a quote request for gear or custom team orders",
        "responses": {
          "200": {
            "description": "Request acknowledged; Maheat Wrestling follows up by email."
          }
        }
      }
    }
  }
}
