Skip to content

Request Email Link

POST
/api/auth/email/request
curl --request POST \
--url https://example.com/api/auth/email/request \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{ "email": "hello@example.com" }'

Request a verification code to link a new email address.

Sends a 6-digit code to the specified email. The code must be confirmed via POST /api/auth/email/verify within 15 minutes.

Rate-limited to 3 requests per hour per user.

Media type application/json
EmailLinkRequest
object
email
required
Email
string format: email
Example generated
{
"email": "hello@example.com"
}

Successful Response

Media type application/json
Example generated
example

Validation Error

Media type application/json
HTTPValidationError
object
detail
Detail
Array<object>
ValidationError
object
loc
required
Location
Array
msg
required
Message
string
type
required
Error Type
string
input
Input
ctx
Context
object
Example generated
{
"detail": [
{
"loc": [
"example"
],
"msg": "example",
"type": "example",
"input": "example",
"ctx": {}
}
]
}