In your json you have List RootObject.data but RootBoject is not a list.
Change
var parsed = JsonSerializer.Deserialize<List<RootObject>>(json, options);
To
var prased = JsonSerializer.Deserialize<RootBoject>(json, options);
And use it like this: parsed.Data