Hello,
If you’re a local admin, you can use PowerShell to get the Bitlocker recovery key of your computer :
Get-BitLockerVolume | ? {$_.KeyProtector.KeyProtectorType -eq "RecoveryPassword"} | Select-Object MountPoint,@{Label='Key';Expression={"$($_.KeyProtector.RecoveryPassword)"}}