{
  "openapi": "3.1.0",
  "info": {
    "title": "Down to Earth Landscaping Estimate API",
    "version": "1.0.0",
    "description": "Lead-intake API for free estimate requests. Primary intake is by phone/text at 508-649-8858; this API documents the same intake for agents."
  },
  "servers": [
    {
      "url": "https://landscapingnear.me/api/v1"
    }
  ],
  "paths": {
    "/service-area": {
      "get": {
        "summary": "Check whether a town is in the service area",
        "parameters": [
          {
            "name": "town",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Service-area coverage result"
          }
        }
      }
    },
    "/estimate-request": {
      "post": {
        "summary": "Submit a free estimate request",
        "responses": {
          "200": {
            "description": "Request acknowledged; the company follows up by phone/text."
          }
        }
      }
    }
  }
}
