Swift 4 The data couldn’t be read because it isn’t in the correct format
Try this
let gitData = try decoder.decode(Root.self, from: data!)
Traverse through your data
for singleData in gitData.data where (singleData.name ?? "") == "Cafe" {
print(singleData.image)
}