Skip to main content
POST
/
v1
/
auth
/
signup
Create a Supabase Auth user through the gated abuse-controlled proxy
import requests

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

payload = {
    "email": "jsmith@example.com",
    "password": "<string>"
}
headers = {"Content-Type": "application/json"}

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

print(response.text)
{}

Body

application/json
email
string<email>
required
password
string
required
Minimum string length: 8
display_name
string | null
captcha_token
string | null

Required when Auth CAPTCHA is enabled; forwarded to Supabase Auth for validation.

redirect_to
string | null

Console redirect URL passed through to Supabase Auth.

Response

Supabase Auth signup response

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