Skip to main content
GET
/
api
/
v1
/
phone-numbers
/
stats
Phone number summary
curl --request GET \
  --url https://{subdomain}.mindhunters.ai/api/v1/phone-numbers/stats \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "total_numbers": 123,
    "action_required": 123,
    "monthly_cost": {
      "amount": 123,
      "currency": "<string>"
    },
    "by_country": [
      {
        "country_code": "<string>",
        "count": 123
      }
    ],
    "by_type": [
      {
        "type": "<string>",
        "count": 123
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

Use a Bearer token to access these API endpoints. Example: "Bearer {your-token}"

Response

200 - application/json

Success

success
boolean
data
object