Skip to main content
GET
/
v1.4
/
Data
/
IDPremium
Wireless ID Premium
curl --request GET \
  --url https://dataapi.dncscrub.com/v1.4/Data/IDPremium \
  --header 'loginId: <loginid>'
{
  "Phone": "2548787052",
  "PhoneType": "W",
  "OCN": "6529",
  "TelcoName": "T-MOBILE USA, INC.",
  "ODate": "20260204"
}
Returns the current telco carrier of a phone number. This is the most accurate carrier data that exists. It differs from the carrier data returned by a scrub in that data is the carrier originally assigned to a phone number and is doing a live dip into the telco systems.

Request

Headers

loginId
string
required
Your API Key (LoginId from your DNCScrub account)

Query Parameters

phone
string
required
10-digit phone number to look up

Output parameters

FieldDescription
PhoneTen digit phone number that was queried. Example 5039367188
PhoneType1 character code identifying the phone type
OCNOperating Company Number, 4 character alpha numeric
TelcoNameName of telephone company provider, 50 character max.
ODateOut Date, date stamp of last live lookup, YYYYMMDD format

PhoneType values

ValueDescription
NNot available
LLand Line
VVoIP
WWireless
OOther

Example Request

curl --location --request GET \
  'https://dataapi.dncscrub.com/v1.4/Data/IDPremium
    ?phone=5039367187' \
  --header 'loginId: YOUR_API_KEY'
{
  "Phone": "2548787052",
  "PhoneType": "W",
  "OCN": "6529",
  "TelcoName": "T-MOBILE USA, INC.",
  "ODate": "20260204"
}