That is not how you browse a restic repo. It really depends on what you wish to do but here are some examples.
You can browse snapshots and potentially restore files manually through a file manager. This is how you mount the backup like it was a drive so you can browse it.
restic -r /run/media/harvey/data/Backup mount /mnt/resticsnapshots
Now the restic repo is browsable by your file manager at the location /mnt/resticsnapshots/
and if you go into the subdirectory called snapshots you will be able to browse the contents of each snapshot by date.
If you wish to use restic itself to restore a backup. This command will give you a list of available snapshot id's and when they were created.
restic -r /run/media/harvey/data/Backup snapshots
Get the ID of the snapshot you wish to use, for this example I will use 025845st
as the ID and restore to whatever location you like.
restic -r /run/media/harvey/data/Backup restore 025845st --target /path/to/restore/
I think it is possible to use "latest" instead of a snapshot id, if you just want to use whatever the latest one is.