{
  "slug": "unit-converter",
  "name": "gizza-ai/unit-converter",
  "version": "0.1.0",
  "title": "Unit Converter — Length, Mass, Temperature & More — gizza.ai",
  "description": "Convert between units of length, mass, temperature, volume, area, speed, data size, and time — instantly in your browser. Names and symbols accepted. Nothing is uploaded.",
  "tags": [
    "unit converter",
    "measurement converter",
    "metric to imperial",
    "km to miles",
    "celsius to fahrenheit",
    "kg to pounds",
    "gb to mb",
    "convert units"
  ],
  "category": "data",
  "urls": {
    "page": "https://gizza.ai/tools/unit-converter/",
    "markdown": "https://gizza.ai/tools/unit-converter/index.md",
    "descriptor": "https://gizza.ai/tools/unit-converter/tool.json",
    "deep_link_example": "https://gizza.ai/tools/unit-converter/?value=5&from=km&to=miles"
  },
  "cli": "gizza tool unit-converter \"5\" 'from=km' 'to=miles'",
  "tool": {
    "description": "Convert a numeric value between two units of the same category: length, mass, temperature, volume, area, speed, data size, or time. Unit names, plurals, and symbols/aliases are accepted.",
    "parameters": {
      "additionalProperties": false,
      "properties": {
        "from": {
          "description": "Source unit.",
          "type": "string"
        },
        "to": {
          "description": "Target unit (same category as 'from').",
          "type": "string"
        },
        "value": {
          "description": "The numeric quantity to convert.",
          "type": "number"
        }
      },
      "required": [
        "value",
        "from",
        "to"
      ],
      "type": "object"
    }
  }
}