Documentation Index
Fetch the complete documentation index at: https://docs.plura.ai/llms.txt
Use this file to discover all available pages before exploring further.
Description
IP, email, phone and URL validation scoring. Use this integration to check IP reputation, validate emails and phone numbers, and scan URLs for risk.
Authentication
Available Actions
- IP lookup (reputation check)
- Email validation
- Phone validation
- URL scan
Examples
Example 1: IPQualityScore - IP Lookup
Check IP reputation.
{
"automationType": "ipqualityscore",
"nodeId": "ipqs-ip-lookup-001",
"nodeParams": {
"action": "ip_lookup",
"params": {
"ip": "8.8.8.8",
"apiKey": "YOUR_IPQS_API_KEY"
}
}
}
Example 2: IPQualityScore - Email Validate
Validate an email address.
{
"automationType": "ipqualityscore",
"nodeId": "ipqs-email-validate-001",
"nodeParams": {
"action": "email_validate",
"params": {
"email": "test@example.com",
"apiKey": "YOUR_IPQS_API_KEY"
}
}
}
Example 3: IPQualityScore - Phone Validate
Validate a phone number.
{
"automationType": "ipqualityscore",
"nodeId": "ipqs-phone-validate-001",
"nodeParams": {
"action": "phone_validate",
"params": {
"phone": "+14155552671",
"apiKey": "YOUR_IPQS_API_KEY"
}
}
}
Example 4: IPQualityScore - URL Scan
Scan a URL for risk.
{
"automationType": "ipqualityscore",
"nodeId": "ipqs-url-scan-001",
"nodeParams": {
"action": "url_scan",
"params": {
"url": "https://example.com",
"apiKey": "YOUR_IPQS_API_KEY"
}
}
}
Third-Party Documentation