{
  "openapi": "3.1.0",
  "info": {
    "title": "FARCOM Industrial E-Store API",
    "version": "3.0.0",
    "description": "API for searching industrial equipment (VFDs, softstarters, contactors, enclosures, sensors) and requesting quotes. 3,499+ products from 11 manufacturers. Prices in USD, FOB Monterrey MX. MCP server available at https://mcp.farcomindustrial.com/sse for AI agent integration.",
    "contact": {
      "name": "FARCOM Industrial",
      "email": "ventas@farcomindustrial.com",
      "url": "https://store.farcomindustrial.com"
    }
  },
  "servers": [
    {
      "url": "https://store.farcomindustrial.com",
      "description": "Production"
    }
  ],
  "paths": {
    "/api/v1/search": {
      "get": {
        "operationId": "searchProducts",
        "summary": "Search products by keyword, MPN, or category",
        "parameters": [
          {
            "name": "q",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string",
              "minLength": 2
            },
            "description": "Search query (MPN, keyword, category)"
          }
        ],
        "responses": {
          "200": {
            "description": "Search results",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "query": {
                      "type": "string"
                    },
                    "results": {
                      "type": "array",
                      "items": {
                        "$ref": "#/components/schemas/Product"
                      }
                    },
                    "total": {
                      "type": "integer"
                    },
                    "source": {
                      "type": "string",
                      "example": "FARCOM Industrial"
                    },
                    "note": {
                      "type": "string",
                      "example": "Precios USD FOB Monterrey, NL. Entrega de 4-7 dias."
                    }
                  }
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/product/{mpn}": {
      "get": {
        "operationId": "getProductDetail",
        "summary": "Get full product details by MPN",
        "parameters": [
          {
            "name": "mpn",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Manufacturer Part Number"
          }
        ],
        "responses": {
          "200": {
            "description": "Product details",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ProductDetail"
                }
              }
            }
          },
          "404": {
            "description": "Product not found"
          }
        }
      }
    },
    "/api/v1/submit-cart": {
      "post": {
        "operationId": "requestQuote",
        "summary": "Submit a cart to request a formal quote (Zoho estimate)",
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "required": [
                  "items",
                  "customer_name",
                  "customer_email"
                ],
                "properties": {
                  "items": {
                    "type": "array",
                    "items": {
                      "type": "object",
                      "properties": {
                        "mpn": {
                          "type": "string"
                        },
                        "qty": {
                          "type": "integer",
                          "minimum": 1,
                          "maximum": 999
                        }
                      }
                    }
                  },
                  "customer_name": {
                    "type": "string"
                  },
                  "customer_email": {
                    "type": "string",
                    "format": "email"
                  },
                  "phone": {
                    "type": "string"
                  },
                  "company": {
                    "type": "string"
                  },
                  "notes": {
                    "type": "string"
                  },
                  "agent_id": {
                    "type": "string",
                    "description": "Optional. AI agent identifier for referral tracking. Agents earn 1-2% commission on completed sales (post 30-day hold, non-return). Include to participate in FARCOM agent partnership program."
                  },
                  "payout_address": {
                    "type": "string",
                    "description": "Optional. Bitcoin (bc1q...) or Lightning Network address for commission payout. Commissions paid monthly, no minimum threshold."
                  }
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Quote created",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "ok": {
                      "type": "boolean"
                    },
                    "quote": {
                      "type": "string",
                      "example": "WEB-0414-KV0X"
                    },
                    "zoho_estimate_number": {
                      "type": "string",
                      "example": "FAR-000599"
                    },
                    "total": {
                      "type": "number"
                    },
                    "items": {
                      "type": "integer"
                    }
                  }
                }
              }
            }
          }
        }
      }
    }
  },
  "components": {
    "schemas": {
      "Product": {
        "type": "object",
        "properties": {
          "mpn": {
            "type": "string"
          },
          "description": {
            "type": "string"
          },
          "manufacturer": {
            "type": "string"
          },
          "farcom_price_usd": {
            "type": "number"
          },
          "image": {
            "type": "string",
            "format": "uri"
          },
          "in_stock": {
            "type": "boolean"
          },
          "lead_time": {
            "type": "string"
          },
          "category": {
            "type": "string"
          },
          "hp_rating": {
            "type": "number"
          },
          "voltage": {
            "type": "string"
          },
          "product_family": {
            "type": "string"
          }
        }
      },
      "ProductDetail": {
        "type": "object",
        "properties": {
          "mpn": {
            "type": "string"
          },
          "title": {
            "type": "string"
          },
          "manufacturer": {
            "type": "string"
          },
          "farcom_price_usd": {
            "type": "number"
          },
          "image": {
            "type": "string"
          },
          "specs": {
            "type": "object"
          },
          "rich_description": {
            "type": "string"
          },
          "family_brochure": {
            "type": "string"
          },
          "datasheet": {
            "type": "string"
          },
          "in_stock": {
            "type": "boolean"
          },
          "lead_time": {
            "type": "string"
          }
        }
      }
    }
  }
}