How to convert a JToken April 12, 2024 by Tarik You can use the JToken.ToObject<T>() method. JToken token = ...; int value = token.ToObject<int>();