Google Form Creator

Upload a JSON file with your form configuration to create a Google Form automatically.

Drag & drop your JSON file here or click to select

Expected JSON Format:

{
  "form_title": "Your Form Title",
  "sections": [
    {
      "title": "Section Title",
      "description": "Section Description",
      "questions": [
        {
          "title": "Question Title",
          "type": "RADIO|CHECKBOX|TEXT|SCALE",
          "required": true,
          "options": ["Option 1", "Option 2"]
        }
      ]
    }
  ]
}