Skip to main content
POST
/
api
/
v1
/
auth
/
check-email
Check if email is registered
curl --request POST \
  --url https://mcp.echozero.app/api/v1/auth/check-email \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "someone@example.com"
}
'
{
  "success": true,
  "data": true
}

Headers

x-signature
string

HMAC-SHA256 signature: HMAC-SHA256(secretKey, timestamp + METHOD + path + body). Optional -- when omitted, HMAC verification is skipped.

x-timestamp
string

Request timestamp in epoch milliseconds. Required when x-signature is provided. Rejected if drift exceeds 5 minutes.

Body

application/json
email
string
required
Example:

"user@example.com"

Response

true if email exists.

success
boolean
required
Example:

true

data
boolean
required

Operation result