Skip to main content
GET
/
v1.4
/
Data
/
PhoneIDAppend
Reverse Phone ID Append
curl --request GET \
  --url https://dataapi.dncscrub.com/v1.4/Data/PhoneIDAppend \
  --header 'loginId: <loginid>'
{
  "Score": 100,
  "Category": "I ",
  "LastName": "CONSUMER",
  "FirstName": "JOHN",
  "MiddleInitial": "W",
  "BusinessName": "",
  "Address1": "123 BIRCH ST",
  "Address2": "",
  "City": "BEAVERTON",
  "State": "OR",
  "Zip": "97008",
  "DPV": "Y",
  "Phone": "7075276405",
  "Rectype": "R",
  "Telconame": "",
  "DACode": " ",
  "ResponseCode": null
}

Request

Headers

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

Query Parameters

FirstName
string
required
First name
LastName
string
required
Last name
Address1
string
required
Street address
City
string
required
City name
State
string
required
State abbreviation
Zip
string
required
ZIP code

Output parameters

FieldDescription
PhoneAppended 10-digit phone number
FirstNameFirst name associated with the address
LastNameLast name associated with the address
MiddleInitialMiddle initial
BusinessNameBusiness name if applicable
Address1Primary address line
Address2Secondary address line
CityCity name
StateState abbreviation
ZipZIP code
ScoreQuality/confidence score
CategoryClassification category
DPVDelivery Point Validation code
RectypeRecord type
TelconameTelecommunications company name
DACodeDelivery Area code

Example Request

curl --location --request GET \
  'https://dataapi.dncscrub.com/v1.4/Data/PhoneIDAppend
    ?FirstName=John
    &LastName=Consumer
    &Address1=123%20Birch%20St
    &City=Beaverton
    &State=OR
    &Zip=97008' \
  --header 'loginId: YOUR_API_KEY'
{
  "Score": 100,
  "Category": "I ",
  "LastName": "CONSUMER",
  "FirstName": "JOHN",
  "MiddleInitial": "W",
  "BusinessName": "",
  "Address1": "123 BIRCH ST",
  "Address2": "",
  "City": "BEAVERTON",
  "State": "OR",
  "Zip": "97008",
  "DPV": "Y",
  "Phone": "7075276405",
  "Rectype": "R",
  "Telconame": "",
  "DACode": " ",
  "ResponseCode": null
}