v1

latestOpenAPI 3.0.3Proprietary2026-07-13261150.7 KB
Trust

Trust/Spam Detection v2 (with Reputation Scoring)

Enhanced trust endpoint that includes quantitative reputation scoring.

New in v2:

  • reputation_score: 0-100 integer (higher = more trustworthy)
  • trust_level: Categorical level (high >= 70, medium 40-69, low < 40)
  • last_updated: ISO 8601 timestamp

Reputation Score Ranges:

  • Confirmed scam: 10
  • Confirmed robocall: 20
  • General spam: 35
  • Clean number: 50-85
post/api/v2/trust

Request body

phone_numberstring required

Example request

{
  "phone_number": "15555550123"
}

Response

Successful trust analysis with reputation scoring

errorsstring[]

Example response

{
  "data": {
    "number": "15555550123",
    "spam_type": "NONE",
    "subjects": [],
    "reputation_score": 85,
    "trust_level": "high",
    "last_updated": "2026-01-18T12:30:00Z"
  },
  "errors": []
}