Skip to main content
POST
/
v1
/
auth
/
verification
/
resend
Resend signup verification through the gated abuse-controlled proxy
import requests

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

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 resend response

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