SNOWFLAKE.ACCOUNT_USAGE.QUERY_HISTORY is a view. and also account admin has no access to the source. I guess you may challenge the security parameters of that view but I am not sure it will do the work.
Instead, I would consider to execute a predefined task that will extract this data into a table the app can access. it will take a few seconds of delay but you will get the data.
make sure in the CREATE TASK to RUN AS OWNER without a schedule.
then EXECUTE IMMEDIATE <TASK_NAME>;
I hope it will work for you