Skip to main content
GET
/
api
/
v1
/
auth
/
check-email
/
{email}
Check Email
curl --request GET \
  --url https://api.example.com/api/v1/auth/check-email/{email}
{
  "registered": true
}

Check Email

Check whether an email address has an existing AMA2 account.
This endpoint is public and does not require authentication.

Path Parameters

email
string
required
The email address to check.

Response

registered
boolean
Whether the email is registered.

Example

curl https://api.ama2.me/api/v1/auth/check-email/user@example.com
{
  "registered": true
}