Can I download Search History from Panther?

Last updated: February 17, 2026

QUESTION

How can I download Search History from Panther directly from the Search History Page?

ANSWER

No, Panther currently doesn't have a feature that allows you to download search/query history directly from the Search History page. However, you can retrieve the search history by querying Snowflake directly through Panther's Data Explorer.

Here's an example query:

SELECT start_time, user_name, execution_status, query_id, query_tag, query_text
FROM SNOWFLAKE.ACCOUNT_USAGE.QUERY_HISTORY
WHERE user_name = 'PANTHER_READONLY' --this should stay PANTHER_READONLY as this is how it will show up in the query_history results
    and start_time > '2026-02-11' -- edit for desired date range
LIMIT 100 -- increase for larger limit

This query should retrieve the search history, and Data Explorer allows you to download it as a CSV file.

If you are trying to view search history from Panther Audit Logs, please check out this kb article.