{
  "tool_id": "flexibility_score",
  "slug": "flexibility-score-calculator",
  "path": "/flexibility-score-calculator/",
  "mode": "url_api",
  "api_usage": "GET https://aifithub.io/api/flexibility-score-calculator/?<params>",
  "sample_input": {
    "tool": "flexibility_score",
    "reach_cm": 25,
    "age": 30,
    "gender": "male"
  },
  "input_schema": {
    "type": "object",
    "properties": {
      "tool": { "type": "string" },
      "reach_cm": { "type": "number" },
      "age": { "type": "number" },
      "gender": { "type": "string", "enum": ["male", "female", "other"] }
    },
    "required": ["tool", "reach_cm", "age"]
  },
  "output_schema": {
    "type": "object",
    "properties": {
      "rating": { "type": "string" },
      "percentile": { "type": "number" },
      "targetCm": { "type": "number" },
      "improvementCm": { "type": "number" },
      "ratingMessage": { "type": "string" },
      "ageGroupLabel": { "type": "string" }
    }
  }
}
