v52

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

List reputation-monitored phone numbers across all enterprises

Convenience alias for GET /v2/enterprises/{enterprise_id}/reputation/numbers that returns numbers across every enterprise you own. Useful when you don't want to look up the enterprise id first.

get/reputation/numbers

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:20

Items per page. 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[enterprise_id]string uuid

Filter by enterprise ID.

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

Exact phone-number match (E.164).

Response

Paginated list.

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