Spam
Report Spam Number (Public - No Auth)
Report a phone number as spam without requiring API key authentication. Rate limited by IP address instead of API key.
Use cases:
- Landing pages
- Public forms
- Mobile apps where exposing API keys is not desirable
post/api/v1/spam/report/public
Request body
Example request
{
"phone_number": "15555550123",
"details": "Caller claimed to be from IRS",
"source": "my-website"
}Response
Spam report submitted successfully
Example response
{
"success": true,
"message": "Thank you! Your spam report has been submitted.",
"data": {
"phone_number": "+15555550123",
"report_type": "robocall",
"total_reports": 5
}
}