{
"status": "ok",
"count": 1,
"data": [
{
"nickname": "The_IzeBerg",
"account_id": 11545443
}
]
}
using Newtonsoft.Json.Linq;
...
dynamic root = JObject.Parse(json);
int id = root.data[0].account_id;