do{
if let json =
stringToParse.data(using: String.Encoding.utf8){
if let jsonData = try JSONSerialization.jsonObject(with: json, options: .allowFragments) as? [String:AnyObject]{
print(jsonData) // тут получаешь
}
}
}catch {
print(error.localizedDescription)
}