v53

latestOpenAPI 3.1.0raw.githubusercontent.com2026-08-041,1941,9384.1 MB
Reputation

Get a single reputation-monitored phone number

Retrieve one registered number with its latest reputation snapshot. The phone_number path parameter is in E.164 format and must be URL-encoded (e.g. %2B19493253498).

get/enterprises/{enterprise_id}/reputation/numbers/{phone_number}

Path parameters

enterprise_idstring uuid required
Example:4a6192a4-573d-446d-b3ce-aff9117272a6

The enterprise id. Lowercase UUID.

phone_numberstring required
Example:+19493253498

Phone number in E.164 format (+1NPANXXXXXX for US/CA). The leading + MUST be URL-encoded as %2B (e.g. %2B19493253498).

Query parameters

freshboolean

When true, fetches fresh reputation data (incurs API cost). When false (default), returns cached data.

Response

Phone number with reputation data.

Example response

{
  "data": {
    "created_at": "2026-04-26T18:06:51.940749Z",
    "enterprise_id": "4a6192a4-573d-446d-b3ce-aff9117272a6",
    "id": "8a4b1f5e-2f12-4c0c-9a98-9b3a7d8b8e62",
    "phone_number": "+19493253498",
    "reputation_data": {
      "connection_score": 80,
      "engagement_score": 64,
      "last_refreshed_at": "2026-04-26T18:09:24.785211Z",
      "maturity_score": 72,
      "sentiment_score": 75,
      "spam_risk": "low"
    },
    "updated_at": "2026-04-26T18:09:24.785211Z"
  }
}