Hi @aem_noob , I don't know what a full string looks like, but this seems to be JsonArray, try using that class instead. JsonArray jsonArray = new Gson().toJsonTree(arrayOfStrings).getAsJsonArray();You could then iterate and read the JsonObject in this array, or form the proper JsonString which wou...