cURL
curl --request POST \
--url 'https://apis.proofy.io/v1/verify/batch/create?api_key=' \
--header 'Content-Type: application/json' \
--data '
{
"emails": [
"test@example.com",
"hello@domain.com"
]
}
'import requests
url = "https://apis.proofy.io/v1/verify/batch/create?api_key="
payload = { "emails": ["test@example.com", "hello@domain.com"] }
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({emails: ['test@example.com', 'hello@domain.com']})
};
fetch('https://apis.proofy.io/v1/verify/batch/create?api_key=', 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://apis.proofy.io/v1/verify/batch/create?api_key=",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'emails' => [
'test@example.com',
'hello@domain.com'
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://apis.proofy.io/v1/verify/batch/create?api_key="
payload := strings.NewReader("{\n \"emails\": [\n \"test@example.com\",\n \"hello@domain.com\"\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://apis.proofy.io/v1/verify/batch/create?api_key=")
.header("Content-Type", "application/json")
.body("{\n \"emails\": [\n \"test@example.com\",\n \"hello@domain.com\"\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://apis.proofy.io/v1/verify/batch/create?api_key=")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"emails\": [\n \"test@example.com\",\n \"hello@domain.com\"\n ]\n}"
response = http.request(request)
puts response.read_body{
"status": "parsing",
"id": "e29bec0d-c534-493d-9c86-f44b0e2c2617"
}{
"message": "Not enough credits"
}{
"message": "Unauthorized"
}{
"message": "Not Found"
}{
"message": "Unprocessable Entity"
}{
"message": "Too Many Requests"
}{
"message": "Internal Server Error"
}Batch
Create batch request
Verifies one or multiple emails in a batch
POST
/
verify
/
batch
/
create
cURL
curl --request POST \
--url 'https://apis.proofy.io/v1/verify/batch/create?api_key=' \
--header 'Content-Type: application/json' \
--data '
{
"emails": [
"test@example.com",
"hello@domain.com"
]
}
'import requests
url = "https://apis.proofy.io/v1/verify/batch/create?api_key="
payload = { "emails": ["test@example.com", "hello@domain.com"] }
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({emails: ['test@example.com', 'hello@domain.com']})
};
fetch('https://apis.proofy.io/v1/verify/batch/create?api_key=', 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://apis.proofy.io/v1/verify/batch/create?api_key=",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'emails' => [
'test@example.com',
'hello@domain.com'
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://apis.proofy.io/v1/verify/batch/create?api_key="
payload := strings.NewReader("{\n \"emails\": [\n \"test@example.com\",\n \"hello@domain.com\"\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://apis.proofy.io/v1/verify/batch/create?api_key=")
.header("Content-Type", "application/json")
.body("{\n \"emails\": [\n \"test@example.com\",\n \"hello@domain.com\"\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://apis.proofy.io/v1/verify/batch/create?api_key=")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"emails\": [\n \"test@example.com\",\n \"hello@domain.com\"\n ]\n}"
response = http.request(request)
puts response.read_body{
"status": "parsing",
"id": "e29bec0d-c534-493d-9c86-f44b0e2c2617"
}{
"message": "Not enough credits"
}{
"message": "Unauthorized"
}{
"message": "Not Found"
}{
"message": "Unprocessable Entity"
}{
"message": "Too Many Requests"
}{
"message": "Internal Server Error"
}Use to verify multiple email databases by sending a single request for efficient batch processing.
Batch size
Single batch can process up to 10,000 emails.Rate Limit
The Batch Email Verification API is limited to 25 requests per minute and 2 concurrent batch tasks per account. Other batch tasks will be queued.⌘I