<-- back

JSON to CSV with BASH

Hey, recently I’ve posted about jq and today I’m going to explain how I used it to parse JSON from web (retrieved with CURL) and turn it to CSV.

First of all let’s see what JSON we have:

{
  "data": [
    {
      "short_data": {
        "name": "value1",
        "link": "value2"
      },
      "long_data": {
        "company_name" "value3",
        "company_position" "value4"
      }
    },
    {/*...*/},
    {/*...*/},
    {/*...*/}
  ]
}


Ok, the CSV we want to get is:

name,link,company_name,company_position
value1,value2,value3,value4
value1,value2,value3,value4
...


And here is how simple it is:

jq -r '.data | map(.short_data.name), map(.short_data.link), map(.long_data.company_name), map(.long_data.company_position) | @csv' <<< $OUTPUT


$OUTPUT - is variable containing the JSON string (retrieved with CURL in my case)

As you can see jq has it’s own pipe and we can fetch values from json “path” and pass it to @csv handler.

Looks great but the result is a bit different from what we were expected:

value1,value1,value1,value1
value2,value2,value2,value2
value3,value3,value3,value3
value4,value4,value4,value4
...


What do we need is transpose the output. csvtool is great package that allow us to do it. We can pipe our csv to <csv> | csvtool transpose - and get result we need.

And final command:

jq -r '.data | map(.short_data.name), map(.short_data.link), map(.long_data.company_name), map(.long_data.company_position) | @csv' <<< $OUTPUT | csvtool transpose -


leads to result:

value1,value2,value3,value4
value1,value2,value3,value4
...


exactly what we need.


Feel free to contact me for feedback or questions. Find my contacts on About page.