{
  "openapi": "3.1.0",
  "info": {
    "title": "Akhil Naidu Portfolio API",
    "version": "2.1.0",
    "description": "Public read APIs for profile, products, experience, and contact discovery. No token is required for GET routes."
  },
  "servers": [
    {
      "url": "https://akhilnaidu.com"
    }
  ],
  "paths": {
    "/api/health": {
      "get": {
        "summary": "Health",
        "operationId": "getHealth",
        "responses": {
          "200": {
            "description": "Service is up"
          }
        }
      }
    },
    "/api/v1/profile": {
      "get": {
        "summary": "Profile",
        "operationId": "getProfile",
        "responses": {
          "200": {
            "description": "Profile document"
          }
        }
      }
    },
    "/api/v1/products": {
      "get": {
        "summary": "Products",
        "operationId": "listProducts",
        "responses": {
          "200": {
            "description": "Product list"
          }
        }
      }
    },
    "/api/v1/products/{id}": {
      "get": {
        "summary": "Product by id",
        "operationId": "getProduct",
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Product"
          },
          "404": {
            "description": "Not found"
          }
        }
      }
    },
    "/api/v1/experiences": {
      "get": {
        "summary": "Experience",
        "operationId": "listExperiences",
        "responses": {
          "200": {
            "description": "Experience list"
          }
        }
      }
    },
    "/api/v1/expertise": {
      "get": {
        "summary": "Expertise",
        "operationId": "listExpertise",
        "responses": {
          "200": {
            "description": "Expertise list"
          }
        }
      }
    },
    "/api/v1/about": {
      "get": {
        "summary": "About",
        "operationId": "getAbout",
        "responses": {
          "200": {
            "description": "About document"
          }
        }
      }
    },
    "/api/v1/contact": {
      "get": {
        "summary": "Contact options",
        "operationId": "getContact",
        "responses": {
          "200": {
            "description": "Contact options"
          }
        }
      }
    }
  }
}