Is there a way to run a Splunk query to get a list of all reports by using a Splunk query?
You can try using rest, the view will be search for reports
|rest /servicesNS/-/-/saved/searches |table request.ui_dispatch_view title
Reports are saved searches whose alert type is "always".
Try this:
| rest /servicesNS/-/-/saved/searches | search alert_type = "always"
You can try using rest, the view will be search for reports
|rest /servicesNS/-/-/saved/searches |table request.ui_dispatch_view title