v1

latestOpenAPI 3.0.3Proprietary2026-07-13261150.7 KB
Spam

Enhanced Multi-Source Spam Lookup

Advanced spam detection that aggregates data from multiple sources including:

  • Master spam database
  • External provider feeds
  • Web sources
  • Crowdsourced reports

Returns comprehensive spam intelligence with confidence scores.

post/api/v1/spam/lookup/enhanced

Request body

phone_numberstring required
include_web_sourcesboolean

Include web-scraped data

include_providerboolean

Include external provider data

Example request

{
  "phone_number": "15555550123"
}

Response

Successful enhanced spam lookup

phone_numberstring
is_spamboolean
is_robocallboolean
is_scamboolean
spam_type'NONE' | 'SPAM' | 'ROBOCALL' | 'SCAM'
confidencenumber
total_complaintsinteger
sourcesstring[]
categoriesstring[]

Example response

{
  "phone_number": "15555550123",
  "is_spam": true,
  "is_robocall": true,
  "spam_type": "ROBOCALL",
  "confidence": 0.92,
  "total_complaints": 15,
  "sources": [
    "database",
    "provider",
    "web"
  ],
  "categories": [
    "Warranties",
    "Auto"
  ]
}