API Json response to datatable

Deserialize the JSON with:
grafik
output: myJObject | TypeArgument: JObject

then we can convert this JObject to a DataTable by:

myDataTable =
Newtonsoft.Json.Linq.JArray.FromObject(new JObject(){myJObject}).ToObject(Of DataTable)