curl --request POST \
--url https://public-api.etoro.com/api/v1/users/email/verifications \
--header 'X-Request-ID: <x-request-id>' \
--header 'x-api-key: <api-key>' \
--header 'x-user-key: <api-key>'import requests
url = "https://public-api.etoro.com/api/v1/users/email/verifications"
headers = {
"X-Request-ID": "<x-request-id>",
"x-api-key": "<api-key>",
"x-user-key": "<api-key>"
}
response = requests.post(url, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'X-Request-ID': '<x-request-id>',
'x-api-key': '<api-key>',
'x-user-key': '<api-key>'
}
};
fetch('https://public-api.etoro.com/api/v1/users/email/verifications', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://public-api.etoro.com/api/v1/users/email/verifications",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_HTTPHEADER => [
"X-Request-ID: <x-request-id>",
"x-api-key: <api-key>",
"x-user-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://public-api.etoro.com/api/v1/users/email/verifications"
req, _ := http.NewRequest("POST", url, nil)
req.Header.Add("X-Request-ID", "<x-request-id>")
req.Header.Add("x-api-key", "<api-key>")
req.Header.Add("x-user-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://public-api.etoro.com/api/v1/users/email/verifications")
.header("X-Request-ID", "<x-request-id>")
.header("x-api-key", "<api-key>")
.header("x-user-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://public-api.etoro.com/api/v1/users/email/verifications")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["X-Request-ID"] = '<x-request-id>'
request["x-api-key"] = '<api-key>'
request["x-user-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"success": true,
"data": {
"otpId": "otp_abc123xyz",
"expiresAt": "2026-05-03T12:30:00Z",
"email": "john.doe@example.com"
}
}{
"success": false,
"error": {
"code": "InvalidPhoneCountryCode",
"message": "PhoneCountryCode must be a valid E.164 country code prefix.",
"details": "<string>",
"field": "<string>",
"value": "<unknown>"
}
}{
"success": false,
"error": {
"code": "InvalidPhoneCountryCode",
"message": "PhoneCountryCode must be a valid E.164 country code prefix.",
"details": "<string>",
"field": "<string>",
"value": "<unknown>"
}
}{
"success": false,
"error": {
"code": "InvalidPhoneCountryCode",
"message": "PhoneCountryCode must be a valid E.164 country code prefix.",
"details": "<string>",
"field": "<string>",
"value": "<unknown>"
}
}Send email verification code
Rate limit: 60 requests per 60 seconds. This is a shared quota — the same budget is consumed by a group of related endpoints, so calling any of them reduces what is left for the others (you cannot call each at the full rate independently). Endpoints sharing this quota:
POST /api/v1/users/email/verifications/confirmationsPOST /api/v1/users/email/verifications/direct-confirmations
Sends a verification code to the user’s registered email address. Returns an otpId to use when verifying the code.
SECURITY: This endpoint can ONLY be used to verify the email address set during registration. Changing an existing verified email is NOT permitted through this endpoint.
curl --request POST \
--url https://public-api.etoro.com/api/v1/users/email/verifications \
--header 'X-Request-ID: <x-request-id>' \
--header 'x-api-key: <api-key>' \
--header 'x-user-key: <api-key>'import requests
url = "https://public-api.etoro.com/api/v1/users/email/verifications"
headers = {
"X-Request-ID": "<x-request-id>",
"x-api-key": "<api-key>",
"x-user-key": "<api-key>"
}
response = requests.post(url, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'X-Request-ID': '<x-request-id>',
'x-api-key': '<api-key>',
'x-user-key': '<api-key>'
}
};
fetch('https://public-api.etoro.com/api/v1/users/email/verifications', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://public-api.etoro.com/api/v1/users/email/verifications",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_HTTPHEADER => [
"X-Request-ID: <x-request-id>",
"x-api-key: <api-key>",
"x-user-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://public-api.etoro.com/api/v1/users/email/verifications"
req, _ := http.NewRequest("POST", url, nil)
req.Header.Add("X-Request-ID", "<x-request-id>")
req.Header.Add("x-api-key", "<api-key>")
req.Header.Add("x-user-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://public-api.etoro.com/api/v1/users/email/verifications")
.header("X-Request-ID", "<x-request-id>")
.header("x-api-key", "<api-key>")
.header("x-user-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://public-api.etoro.com/api/v1/users/email/verifications")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["X-Request-ID"] = '<x-request-id>'
request["x-api-key"] = '<api-key>'
request["x-user-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"success": true,
"data": {
"otpId": "otp_abc123xyz",
"expiresAt": "2026-05-03T12:30:00Z",
"email": "john.doe@example.com"
}
}{
"success": false,
"error": {
"code": "InvalidPhoneCountryCode",
"message": "PhoneCountryCode must be a valid E.164 country code prefix.",
"details": "<string>",
"field": "<string>",
"value": "<unknown>"
}
}{
"success": false,
"error": {
"code": "InvalidPhoneCountryCode",
"message": "PhoneCountryCode must be a valid E.164 country code prefix.",
"details": "<string>",
"field": "<string>",
"value": "<unknown>"
}
}{
"success": false,
"error": {
"code": "InvalidPhoneCountryCode",
"message": "PhoneCountryCode must be a valid E.164 country code prefix.",
"details": "<string>",
"field": "<string>",
"value": "<unknown>"
}
}Authorizations
API key of the application. Only valid together with the x-user-key header — the pair is an alternative to OAuth bearer authentication, never sent alongside it. The pair is granted the same permissions the operation's OAuth scopes describe.
Demo credential for trying the API from these docs: lhgfaslk21490FAScVPkdsb53F9dNkfHG4faZSG5vfjndfcfgdssdgsdHF4663
User-specific authentication key. Only valid together with the x-api-key header — the pair is an alternative to OAuth bearer authentication, never sent alongside it.
Demo credential for trying the API from these docs: eyJlYW4iOiJVbnJlZ2lzdGVyZWRBcHBsaWNhdGlvbiIsImVrIjoiOE5sZ2cwcW5EUVdROUFNWGpXT2lmOWktZnpidG5KcUlqWGJ3WHJZZkpZcldrbG90ZEhvLVBjSWhQaU8xU1ZtMW84aU1WZGZqN2xWNzFjLXFxLmcybXE1dnh4Q1hUT25xaWRUaTFlcEhmVk1fIn0_