JSON to Google Sheets Importer

Automatically convert JSON files to Google Sheets with formatting and organization.

Checking authentication...

JSON Data Input

Upload JSON File

📁

Click to select a JSON file or drag and drop

Supported format: .json

Paste JSON Text

Import Options

Sample JSON Data

Try these sample JSON formats to see how they're converted to spreadsheets:

[
  {
    "name": "Alice Johnson",
    "email": "alice@example.com",
    "department": "Engineering",
    "salary": 95000,
    "start_date": "2022-01-15"
  },
  {
    "name": "Bob Smith",
    "email": "bob@example.com", 
    "department": "Marketing",
    "salary": 75000,
    "start_date": "2021-08-20"
  },
  {
    "name": "Carol Williams",
    "email": "carol@example.com",
    "department": "Sales",
    "salary": 85000,
    "start_date": "2023-03-10"
  }
]
{
  "company": "Tech Corp",
  "founded": 2015,
  "employees": 150,
  "headquarters": "San Francisco, CA",
  "revenue_2023": "$50M",
  "products": ["Software A", "Platform B", "Service C"]
}
[
  {
    "id": 1,
    "customer": {
      "name": "John Doe",
      "email": "john@example.com"
    },
    "order": {
      "total": 125.50,
      "items": ["Laptop", "Mouse"],
      "date": "2024-01-15"
    }
  },
  {
    "id": 2,
    "customer": {
      "name": "Jane Smith", 
      "email": "jane@example.com"
    },
    "order": {
      "total": 89.99,
      "items": ["Keyboard", "Monitor"],
      "date": "2024-01-16"
    }
  }
]