Request a password reset link
POST
/api/v1/auth/forgot-password
const url = 'https://dashboard.justcrawl.io/api/v1/auth/forgot-password';const options = { method: 'POST', headers: {'Content-Type': 'application/json'}, body: '{"email":"hello@example.com"}'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url https://dashboard.justcrawl.io/api/v1/auth/forgot-password \ --header 'Content-Type: application/json' \ --data '{ "email": "hello@example.com" }'Request Body required
Section titled “Request Body required ” Media type application/json
object
email
required
string format: email
Example generated
{ "email": "hello@example.com"}Responses
Section titled “ Responses ”Always 200 (prevents email enumeration). Reset link sent only if account exists.
Missing email