using Newtonsoft.Json.Linq;
public static void Main()
'kind': 'tm:ltm:pool:poolstats',
'selfLink': 'https://localhost/mgmt/tm/ltm/pool/~part~pool-1/stats?ver=12.1.2',
'https://localhost/mgmt/tm/ltm/pool/~part~pool-1/~part~pool-1/stats': {
'kind': 'tm:ltm:pool:poolstats',
'selfLink': 'https://localhost/mgmt/tm/ltm/pool/~part~pool-1/~part~pool-1/stats?ver=12.1.2',
'description': '/Common/tcp'
'description': '/part/pool-1'
'status.availabilityState': {
'description': 'available'
'description': 'The pool is available'
var jsonObject = JObject.Parse(json);
var serverSideConnections = jsonObject.SelectToken("entries['https://localhost/mgmt/tm/ltm/pool/~part~pool-1/~part~pool-1/stats'].nestedStats.entries['serverside.curConns'].value");
Console.WriteLine("Current Connections: " + serverSideConnections.Value<int>());