I have a GSheets API ready which I generated from nocodeapi.com. Now I am trying to fetch the data from the API in JSON format, but I can’t figure out the jq query. What is the standard JQ Query that we give to fetch data from a Google Sheet?
Do you have a screenshot of the JSON response?
For row id of first obj - .data[0].row_id
For name of second obj - .data[1].name
Can you try and see if this works?
Hola!
Try with
data[].Name
You should see all Names found by your API call at the same time.
Saludos!
Both of these work, thank you so much!

