I\'m using an API that returns JSON that looks like this
{ \"boards\":[ { \"attribute\":\"value1\" }, { \"attribute\":
Take a look here:https://github.com/lingoer/SwiftyJSON
let json = JSONValue(dataFromNetworking) if let userName = json[0]["user"]["name"].string{ //Now you got your value }