Qualmie
Identify & enrich

Line & Carrier API

Who carries it, and what kind of line?

Resolve the current carrier, country, and line type — mobile, landline, VoIP or toll-free — including ported numbers.

What you get back

Line & Carrier is one facet of a single Qualmie response — these are the fields it contributes.

line_type
mobile · landline · voip · toll_free
carrier
Name, country, MCC/MNC
ported
Ported to a new carrier
request
curl https://qualmie.dev/v1/liveliness \
  -H "Authorization: Bearer sk_live_1a2b3c..." \
  -H "Content-Type: application/json" \
  -d '{ "phone_number": "+12125550100" }'
200 OK
{
  "phone_number": "+12125550100",
  "valid": true,
  "live": true,
  "reachable": true,
  "line_type": "mobile",
  "carrier": {
    "name": "Verizon Wireless",
    "type": "mobile",
    "country": "US",
    "mcc": "310",
    "mnc": "004"
  },
  "ported": false,
  "risk": {
    "level": "low",
    "score": 8,
    "voip": false,
    "disposable": false,
    "recently_ported": false,
    "recently_disconnected": false
  },
  "checked_at": "2026-07-17T17:04:11Z",
  "latency_ms": 187
}

Common use cases

Route by line type

Detect VoIP for compliance

Resolve the real carrier behind ported numbers