{
  "openapi": "3.0.3",
  "info": {
    "title": "AP5 Web Designs Agency API",
    "version": "1.0.0",
    "description": "API endpoints for AP5 Web Designs services, project quote inquiries, and agent discovery."
  },
  "servers": [
    {
      "url": "https://ap5webdesigns.com"
    }
  ],
  "paths": {
    "/contact": {
      "post": {
        "summary": "Submit Project Inquiry or Request Quote",
        "description": "Allows users and AI agents to submit web development project specifications.",
        "operationId": "submitQuote",
        "x-payment-info": {
          "intent": "charge",
          "method": "stripe",
          "amount": 0,
          "currency": "USD"
        },
        "responses": {
          "200": {
            "description": "Inquiry submitted successfully"
          }
        }
      }
    }
  }
}
