Skip to main content
POST
/
v1
/
auth
/
password
/
reset
Send a password reset email through the gated abuse-controlled proxy
import requests

url = "https://api.13-215-85-171.sslip.io/v1/auth/password/reset"

payload = { "email": "jsmith@example.com" }
headers = {"Content-Type": "application/json"}

response = requests.post(url, json=payload, headers=headers)

print(response.text)
{}

Body

application/json
email
string<email>
required
captcha_token
string | null
redirect_to
string | null

Response

Supabase Auth recovery response

Verbatim Supabase Auth proxy response; the control plane forwards the upstream JSON without constraining it, deliberately open.