{
  "openapi": "3.1.0",
  "info": {
    "title": "Sakurakun999 Portfolio API",
    "version": "1.0.0",
    "description": "API for accessing Sakurakun999 portfolio projects, profile, and machine-readable content."
  },
  "servers": [
    {
      "url": "https://skrk999.com",
      "description": "Production server"
    }
  ],
  "paths": {
    "/api/health": {
      "get": {
        "summary": "Health check",
        "description": "Returns health status of the service.",
        "responses": {
          "200": {
            "description": "Healthy response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "status": {
                      "type": "string"
                    }
                  }
                }
              }
            }
          }
        }
      }
    },
    "/api/projects": {
      "get": {
        "summary": "List all projects",
        "description": "Returns full list of 16 projects categorized across open data, research, and tools.",
        "responses": {
          "200": {
            "description": "Successful response"
          }
        }
      }
    },
    "/api/profile": {
      "get": {
        "summary": "Get profile and philosophy",
        "description": "Returns profile details, philosophies, and tech stack.",
        "responses": {
          "200": {
            "description": "Successful response"
          }
        }
      }
    }
  }
}