curl "https://smartdelivery.smartlead.ai/api/v1/spam-test/report/{spamTestId}/ip-analytics?api_key=YOUR_KEY"
import requests
API_KEY = "YOUR_API_KEY"
response = requests.get(
"https://smartdelivery.smartlead.ai/api/v1/spam-test/report/{spamTestId}/ip-analytics",
params={"api_key": API_KEY}
)
result = response.json()
print(result)
const API_KEY = 'YOUR_API_KEY';
const response = await fetch(
`https://smartdelivery.smartlead.ai/api/v1/spam-test/report/{spamTestId}/ip-analytics?api_key=${API_KEY}`
);
const result = await response.json();
console.log(result);
[
{
"ip": "192.168.1.100",
"blacklisted": false,
"summary": "IP reputation is excellent with no blacklist listings",
"whois_data": {
"isp": "Example ISP",
"location": "United States",
"reverse_dns": "mail1.example.com",
"organization": "Example Organization"
},
"created_at": "2025-03-01T10:00:00Z"
},
{
"ip": "192.168.1.101",
"blacklisted": false,
"summary": "IP reputation is good with no blacklist listings",
"whois_data": {
"isp": "Example ISP",
"location": "United States",
"reverse_dns": "mail2.example.com",
"organization": "Example Organization"
},
"created_at": "2025-09-01T10:00:00Z"
}
]
{
"message": "Invalid API Key"
}
{
"error": "Resource not found"
}
{
"error": "Invalid parameters provided"
}
Smart Delivery
IP Details
Get comprehensive information about sending IP addresses
GET
/
api
/
v1
/
spam-test
/
report
/
{spamTestId}
/
ip-analytics
curl "https://smartdelivery.smartlead.ai/api/v1/spam-test/report/{spamTestId}/ip-analytics?api_key=YOUR_KEY"
import requests
API_KEY = "YOUR_API_KEY"
response = requests.get(
"https://smartdelivery.smartlead.ai/api/v1/spam-test/report/{spamTestId}/ip-analytics",
params={"api_key": API_KEY}
)
result = response.json()
print(result)
const API_KEY = 'YOUR_API_KEY';
const response = await fetch(
`https://smartdelivery.smartlead.ai/api/v1/spam-test/report/{spamTestId}/ip-analytics?api_key=${API_KEY}`
);
const result = await response.json();
console.log(result);
[
{
"ip": "192.168.1.100",
"blacklisted": false,
"summary": "IP reputation is excellent with no blacklist listings",
"whois_data": {
"isp": "Example ISP",
"location": "United States",
"reverse_dns": "mail1.example.com",
"organization": "Example Organization"
},
"created_at": "2025-03-01T10:00:00Z"
},
{
"ip": "192.168.1.101",
"blacklisted": false,
"summary": "IP reputation is good with no blacklist listings",
"whois_data": {
"isp": "Example ISP",
"location": "United States",
"reverse_dns": "mail2.example.com",
"organization": "Example Organization"
},
"created_at": "2025-09-01T10:00:00Z"
}
]
{
"message": "Invalid API Key"
}
{
"error": "Resource not found"
}
{
"error": "Invalid parameters provided"
}
Smart Delivery API: This is part of SmartLead’s deliverability testing suite. Contact support@smartlead.ai for access and API details.
Query Parameters
string
required
Your SmartLead API key
curl "https://smartdelivery.smartlead.ai/api/v1/spam-test/report/{spamTestId}/ip-analytics?api_key=YOUR_KEY"
import requests
API_KEY = "YOUR_API_KEY"
response = requests.get(
"https://smartdelivery.smartlead.ai/api/v1/spam-test/report/{spamTestId}/ip-analytics",
params={"api_key": API_KEY}
)
result = response.json()
print(result)
const API_KEY = 'YOUR_API_KEY';
const response = await fetch(
`https://smartdelivery.smartlead.ai/api/v1/spam-test/report/{spamTestId}/ip-analytics?api_key=${API_KEY}`
);
const result = await response.json();
console.log(result);
Response Codes
Success
Request successful
Bad Request
Invalid request parameters or malformed request body
Unauthorized
Invalid or missing API key. Check your authentication.
Not Found
The requested resource (campaign, lead, email account, etc.) does not exist or you don’t have access to it
Validation Error
Request validation failed. Check parameter types, required fields, and value constraints.
Rate Limit Exceeded
Too many requests. Please slow down and retry after the rate limit resets.
Internal Server Error
Server error occurred. Please try again or contact support if the issue persists.
Service Unavailable
API is temporarily unavailable or under maintenance. Please try again later.
[
{
"ip": "192.168.1.100",
"blacklisted": false,
"summary": "IP reputation is excellent with no blacklist listings",
"whois_data": {
"isp": "Example ISP",
"location": "United States",
"reverse_dns": "mail1.example.com",
"organization": "Example Organization"
},
"created_at": "2025-03-01T10:00:00Z"
},
{
"ip": "192.168.1.101",
"blacklisted": false,
"summary": "IP reputation is good with no blacklist listings",
"whois_data": {
"isp": "Example ISP",
"location": "United States",
"reverse_dns": "mail2.example.com",
"organization": "Example Organization"
},
"created_at": "2025-09-01T10:00:00Z"
}
]
{
"message": "Invalid API Key"
}
{
"error": "Resource not found"
}
{
"error": "Invalid parameters provided"
}
