{
  "tool_id": "strength_standards",
  "slug": "strength-standards-calculator",
  "path": "/strength-standards-calculator/",
  "mode": "url_api",
  "api_usage": "GET https://aifithub.io/api/strength-standards-calculator/?<params>",
  "sample_input": {
    "tool": "strength_standards",
    "body_weight_kg": 80,
    "sex": "male",
    "bench_kg": 80,
    "squat_kg": 120,
    "deadlift_kg": 140,
    "ohp_kg": 50
  },
  "input_schema": {
    "type": "object",
    "properties": {
      "tool": {
        "type": "string"
      },
      "body_weight_kg": {
        "type": "integer"
      },
      "sex": {
        "type": "string"
      },
      "bench_kg": {
        "type": "integer"
      },
      "squat_kg": {
        "type": "integer"
      },
      "deadlift_kg": {
        "type": "integer"
      },
      "ohp_kg": {
        "type": "integer"
      }
    },
    "required": [
      "tool",
      "body_weight_kg",
      "sex",
      "bench_kg",
      "squat_kg",
      "deadlift_kg",
      "ohp_kg"
    ]
  },
  "output_schema": {
    "type": "object",
    "properties": {
      "lifts": {
        "type": "array",
        "items": {
          "type": "object",
          "properties": {
            "lift": {
              "type": "string"
            },
            "liftedKg": {
              "type": "number"
            },
            "ratio": {
              "type": "number"
            },
            "level": {
              "type": "string"
            },
            "percentile": {
              "type": "number"
            },
            "nextLevel": {
              "type": "string"
            },
            "nextLevelKg": {
              "type": "number"
            }
          }
        }
      },
      "overallLevel": {
        "type": "string"
      },
      "overallPercentile": {
        "type": "number"
      }
    }
  }
}
