v52

OpenAPI 3.1.0raw.githubusercontent.com2026-07-311,1941,9384.1 MB
Reputation

List reputation-monitored phone numbers for an enterprise

Paginated list of phone numbers registered for reputation monitoring under this enterprise. The response includes the latest reputation snapshot per number where one has been collected.

get/enterprises/{enterprise_id}/reputation/numbers

Path parameters

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

The enterprise id. Lowercase UUID.

Query parameters

page[number]integer
Example:1

1-based page number. Out-of-range values return an empty page with correct meta.

page[size]integer
Example:10

Items per page. Default 10. Maximum 250; values above are clamped to 250.

filter[phone_number][contains]string
Example:+16035551234

Partial match on phone number. Must contain at least 5 digits.

filter[phone_number][eq]string
Example:+16035551234

Exact phone-number match (E.164).

Response

Paginated list of numbers 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"
    }
  ],
  "meta": {
    "page_number": 1,
    "page_size": 20,
    "total_pages": 3,
    "total_results": 42
  }
}