Back to Blog
📖 Tool Tutorials 管理员 · · 3 minutes · 3 Views

Apple Event Just Ended: I Used JSON to CSV to Organize New Device Specs

Too many specs from the Apple event, manual copying is exhausting. This article shares how to use a JSON to CSV tool to quickly organize iPhone 16 series specs, from getting JSON data to converting to a table, done in ten minutes, with filtering and sorting, much more efficient than manual recording.

Right after the Apple event ended, my social media feed was flooded with posts like "the strongest ever," "squeezing out every drop," and "buy, buy, buy." Honestly, I was excited too, but after the excitement came the worry—there were so many specs for the new devices: iPhone 16, 16 Plus, 16 Pro, 16 Pro Max, plus Apple Watch and AirPods. Under each product were chips, cameras, screens, battery life, weight, price—dense as an anthill. I originally planned to jot them down in a spreadsheet, opening Excel and typing one by one. After less than ten minutes, I got annoyed. My hands ached, and it was easy to mix up rows.

Later I remembered that Apple's official website actually has structured data, and the developer documentation also has JSON-format spec sheets. Instead of copying manually, why not just pull the JSON, convert it to CSV with a tool, paste it into a spreadsheet, and have it neat and clean? I acted on it. I found an online JSON to CSV tool, pasted the data I scraped from the official site, clicked convert, and—poof—the table appeared. That moment felt like straightening out a tangled mess with one swipe.

Let me walk you through how I did it. First, you need JSON data. On Apple's product comparison page, press F12 to open developer tools, find the request in Network that returns the spec parameters, and the Response is JSON. Or even easier, some third-party sites have already organized JSON, so you can just copy it. Once you have the JSON, open a JSON to CSV tool, paste the data into the input box, and pay attention to its configuration options—such as whether to expand nested objects, how to handle arrays, and whether to use commas or semicolons as delimiters. I usually choose "flatten nested" because Apple's specs are often like {"display": {"size": "6.1", "type": "OLED"}}. If you don't expand them, the CSV will just have a blob that's unreadable.

After conversion, download the CSV and open it in Excel or Numbers. Columns are columns, rows are rows. The iPhone 16 Pro's A18 Pro chip, 48MP main camera, 5x telephoto, titanium frame—all neatly arranged. I added a filter, sorted by price, sorted by screen size, and compared however I wanted. Previously, watching a keynote meant taking notes in a small notebook. Now it's done in ten minutes, and I can send the table to friends. Whoever asks "What's the difference between Pro and Pro Max?" I just send the file and save the hassle.

Actually, JSON to CSV tools aren't just for organizing phone specs. You can do the same with graphics cards, laptops, cameras, even rental listings and fund data—anything in JSON format. The key is: don't be afraid of those curly braces and square brackets; the tool will help you break them down. The only thing to note is that before converting, it's best to delete useless fields, otherwise the CSV will be full of nulls, which is also annoying.

For this Apple event, the final table I put together showed the iPhone 16 standard version starting at 5999, Pro at 7999, Pro Max at 9999—no price increase compared to last year, but storage went from 128GB base to 256GB base, which is more for the same price. The A18 chip's benchmark scores, camera aperture values, battery mAh—all lie in the table. If you don't want to bother, someone online has shared the CSV directly, but doing it yourself gives you a better sense of the data.

In short, next time you face this kind of information bombardment, don't be silly and copy by hand. Find a JSON to CSV tool—it takes five minutes. The time saved can be used to watch a review video, or just take a nap. Isn't that better than wrestling with a spreadsheet?

3 Views · 3 minutes

🔗 Related Tools

Try these practical tools related to this article

📝 Related Posts

You might also like these articles

tool-tutorials

September Autumn Recruitment Resumes Pile Up Like Mountains, Adding a Shadow Detail to Your Portfolio Can Make Interviewers Look at You Twice

Autumn recruitment resumes are piling up, and a portfolio without a memorable hook gets filtered out easily. This article shares a low-cost score-boosting trick: use a CSS Shadow Generator to add detailed shadows to cards, buttons, and avatars, giving the page depth and texture. It walks you through how to adjust parameters, choose colors, and which spots are worth adding—in ten minutes you can make interviewers look at you twice.

09-12
tool-tutorials

In the Era of AI Mass Writing, I Kept My Job with This HTML to Markdown Tool

AI mass writing puts huge pressure on content creators, but AI-generated HTML is messy, and manual cleanup is time-consuming and laborious. This article shares how to use an HTML to Markdown tool to one-click turn messy HTML into clean, neat Markdown, saving a lot of time on format adjustments and focusing energy on polishing content and injecting personal style, thereby keeping your job in the AI era.

09-12
tool-tutorials

AI Code Generation Is Getting Stronger, But JS Formatting Still Relies on These Tools

AI code generation is getting stronger and stronger, but the formatting and compression of JS code still can't do without dedicated tools. Whether it's reading compressed legacy code or unifying the chaotic style generated by AI, a good formatting tool can intelligently recognize structure and handle line breaks and indentation according to standards, while compression tools can perform dead code elimination and constant folding. This article discusses the practical use cases and selection points of these tools.

09-12