Thanks @AgaveJoe and @Bruce (SqlWork.com)
if (Res.IsSuccessStatusCode)
{
//Storing the response details recieved from web api
string json = await Res.Content.ReadAsStringAsync();
// Parse the JSON response to extract the address
dynamic data1 = Newtonsoft.Json.JsonConvert.DeserializeObject(json);
string code = data1.token;
TempData["Token"] = code;
}