{
  "slug": "csv-transpose",
  "name": "gizza-ai/csv-transpose",
  "version": "0.1.0",
  "title": "CSV Transpose — Swap rows and columns — gizza.ai",
  "description": "Transpose a CSV — swap rows and columns so the header becomes the first column — in your browser. Free, private, no upload.",
  "tags": [
    "csv transpose",
    "swap rows columns",
    "pivot csv",
    "rotate csv",
    "transpose table"
  ],
  "category": "data",
  "urls": {
    "page": "https://gizza.ai/tools/csv-transpose/",
    "markdown": "https://gizza.ai/tools/csv-transpose/index.md",
    "descriptor": "https://gizza.ai/tools/csv-transpose/tool.json",
    "deep_link_example": "https://gizza.ai/tools/csv-transpose/?data=name%2Cage%0AAda%2C36%0ABo%2C40&delimiter=%2C"
  },
  "cli": "gizza tool csv-transpose \"name,age\nAda,36\nBo,40\"",
  "tool": {
    "description": "Transpose a CSV: swap its rows and columns so the header row becomes the first column and vice versa. The output has one row per input column and one column per input row; ragged rows are padded with empty cells. delimiter is a single char or comma/tab/semicolon/pipe. Runs locally.",
    "parameters": {
      "additionalProperties": false,
      "properties": {
        "data": {
          "description": "The CSV text.",
          "type": "string"
        },
        "delimiter": {
          "default": ",",
          "description": "Field separator: a single char or 'comma'/'tab'/'semicolon'/'pipe'. Default ','.",
          "type": "string"
        }
      },
      "required": [
        "data"
      ],
      "type": "object"
    }
  }
}