Loading
Loading
https://api.apifreaks.com/v1.0/email-validation/bulk
1. Open the Authorizations dropdown and Verify your API key.
2. Click Run to see the live response here.
$ pip install requestsimport requests
import json
url = "https://api.apifreaks.com/v1.0/email-validation/bulk"
payload = json.dumps({
"emailData": [
{
"email": "abc@example.com",
"name": "ABC Person",
"ip": "1.1.1.1"
},
{
"email": "xyz@example.com",
"name": "XYZ Person",
"ip": "8.8.8.8"
}
]
})
headers = {
'Content-Type': 'application/json',
'X-apiKey': ''
}
response = requests.request("POST", url, headers=headers, data=payload)
print(response.text)