Skip to content

Verify Email Endpoint

POST
/api/leads/verify-email
curl --request POST \
--url http://localhost:8000/api/leads/verify-email \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{ "email": "example" }'

Verify one address through the shared verification cascade.

Same path the MCP verify_email tool uses: Reacher when enabled, the per-email cache, then the bundled SMTP probe. The workspace comes from the authenticated context so a caller can never borrow another tenant’s verifier configuration.

x-workspace-id
Any of:
string
Media typeapplication/json
VerifyEmailBody
object
email
required
Email
string
Examplegenerated
{
"email": "example"
}

Successful Response

Media typeapplication/json
Examplegenerated
example

Validation Error

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