Add phone numbers to TrustCall monitoring. Numbers will be automatically checked for carrier spam scores.
When first added, scores may show as Processing until checked with each carrier (typically within 24 hours).
Request
Your API Key (LoginId from your DNCScrub account)
Request Body
The request body is a JSON array of phone number objects:
10-digit North American phone number (without leading 1 or +)
Optional description or label for the phone number (max 50 characters)
Optional service type identifier
Example Request
curl --location --request POST \
'https://dataapi.dncscrub.com/v1.5/TrustCall/Add' \
--header 'loginId: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--data-raw '[
{ "Phone": "5039367187", "Label": "Customer Service" },
{ "Phone": "8084565302", "Label": "Marketing" }
]'
[
{
"Response": "Phone number added to monitor",
"Phone": "5039367187",
"CurrScore": "Processing",
"MaxScore": "Processing",
"HistoricalScore": "0",
"VerizonScore": "Processing",
"ATTScore": "Processing",
"TMobileScore": "Processing",
"RoboKillerStatus": "Processing",
"NomoroboStatus": "Processing",
"FTCComplaints": null
},
{
"Response": "Phone number added to monitor",
"Phone": "8084565302",
"CurrScore": "Processing",
"MaxScore": "Processing",
"HistoricalScore": "0",
"VerizonScore": "Processing",
"ATTScore": "Processing",
"TMobileScore": "Processing",
"RoboKillerStatus": "Processing",
"NomoroboStatus": "Processing",
"FTCComplaints": null
}
]
Response Fields
Status message indicating the result of the add operation
The phone number that was added
Current average carrier spam score: Clean, Medium, High, or Processing
Maximum score recorded in the last 15 days
Historical score from 0-5 (0-1 = no issues, 5 = 50%+ high spam history)
Verizon carrier status: Clean, Flagged, or Processing
AT&T carrier status: Clean, Flagged, or Processing
T-Mobile carrier status: Clean, Flagged, or Processing
RoboKiller app status: Clean, Flagged, or Processing
Nomorobo app status: Clean, Flagged, or Processing
Array of FTC complaints associated with the number, or null if none
Error Responses
Invalid request body or phone number format
Invalid or missing API key
Limits
- Maximum 50 phone numbers per add request