Skip to main content
POST
/
keys
/
forgot
Recover lost API key — send reset email
curl --request POST \
  --url https://api.tryhuntr.com/keys/forgot \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "you@company.com"
}
'
{
  "status": "reset_sent",
  "message": "If that email has an account, a reset link has been sent."
}

Body

application/json
email
string<email>
required

Email address associated with your API key.

Response

Reset email dispatched (if the address is registered). Always 200 — no way to distinguish registered vs. unregistered to prevent enumeration.

status
enum<string>

Always 'reset_sent'.

Available options:
reset_sent
message
string

Human-readable confirmation.