Brand Reputation API

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

What is Brand Reputation API?

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 →

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
  }
}