Brand Reputation API

Comprehensive phone number reputation and trust scoring to protect your business and customers.

Spam Detection

Our Brand Reputation API provides comprehensive trust and reputation information for phone numbers, helping you identify spam, robocalls, and scam numbers to protect your business and customers.

Key Features:

  • Real-time spam and scam detection
  • Robocall identification
  • Comprehensive reputation scoring
  • Complaint count and history
  • Detailed violation subjects
  • Master database integration

Use Cases:

  • Call screening and blocking
  • Customer protection services
  • Fraud prevention systems
  • Compliance and regulatory reporting
  • Brand protection monitoring
  • Risk assessment and scoring
🚀 GraphQL Available

Access reputation data through our powerful GraphQL API for flexible queries and efficient data fetching. Perfect for modern applications requiring precise data control.

Explore GraphQL →
🏢 Enterprise Pricing

Need high-volume access or custom features? Our Enterprise plans offer dedicated support, competitive rates, and SLA guarantees.

Contact Sales →

Reputation Scoring

Our advanced reputation scoring system analyzes multiple data sources to provide accurate trust scores for phone numbers, helping you make informed decisions about call handling and customer interactions.

Trust Score

Get comprehensive trust scores based on complaint history, spam reports, and behavioral patterns. Our trust scoring helps you identify legitimate callers and protect against fraudulent communications.

API Example

POST /api/v1/trust
Content-Type: application/json

{
  "phone_number": "+15551234567"
}

Response:
{
  "data": {
    "number": "+15551234567",
    "is_spam": false,
    "is_robocall": false,
    "is_scam": false,
    "spam_type": "NONE",
    "complaint_count": 0,
    "subjects": [],
    "first_reported": null,
    "last_reported": null,
    "details": ""
  },
  "errors": []
}

GraphQL Query

query {
  lookupTrust(
    phoneNumber: "+15551234567"
  ) {
    number
    isSpam
    isRobocall
    isScam
    spamType
    complaintCount
    subjects
    firstReported
    lastReported
    details
  }
}