curl --request POST \
--url https://api.example.com/api/v1/auth/login \
--header 'Content-Type: application/json' \
--data '
{
"email": "<string>"
}
'{
"message": "<string>",
"email": "<string>",
"error": "<string>"
}Initiate authentication by email and receive a verification token
curl --request POST \
--url https://api.example.com/api/v1/auth/login \
--header 'Content-Type: application/json' \
--data '
{
"email": "<string>"
}
'{
"message": "<string>",
"email": "<string>",
"error": "<string>"
}Documentation Index
Fetch the complete documentation index at: https://mintlify.com/lakshay-goyal/Exness/llms.txt
Use this file to discover all available pages before exploring further.
/api/v1/auth/login/api/v1/auth/verify{
"email": "trader@example.com"
}
{
"message": "Verification link send",
"email": "trader@example.com"
}
{
"error": "Email is required"
}
{
"error": "Server configuration error"
}
{
"error": "Failed to process login request"
}
userId and emailcurl -X POST https://api.exness.com/api/v1/auth/login \
-H "Content-Type: application/json" \
-d '{
"email": "trader@example.com"
}'
const response = await fetch('https://api.exness.com/api/v1/auth/login', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify({
email: 'trader@example.com'
})
});
const data = await response.json();
console.log(data);
// { message: "Verification link send", email: "trader@example.com" }