Documentation Index Fetch the complete documentation index at: https://docs.dncscrub.com/llms.txt
Use this file to discover all available pages before exploring further.
Reassigned Authority Plus API
Reassigned Authority Plus (Enhanced RND) combines CCC’s authoritative carrier data with the FCC Reassigned Number Database to provide the most accurate reassignment determination available.
Endpoint
https://dataapi.dncscrub.com/v1.5/Data/EnhancedRND
Authentication
Include your API key in the loginId HTTP header:
--header 'loginId: YOUR_API_KEY'
Parameters
Parameter Required Description phoneNumberYes 10-digit phone number (no leading 1 or +) dateYes Consent date to check against useSandboxNo Set to true to use sandbox mode for testing (returns random results) projIdNo Project identifier for tracking purposes
The date parameter accepts multiple formats:
Format Example MM/DD/YYYY09/29/2021YYYY-MM-DD2021-09-29MM/DD/YY09/29/21YYYYMMDD20210929
Single Number Request (GET)
curl --location --request GET \
'https://dataapi.dncscrub.com/v1.5/Data/EnhancedRND?phoneNumber=7075276405&date=20211109' \
--header 'loginId: YOUR_API_KEY'
Response
{
"PhoneNumber" : "7075276405" ,
"IsReassigned" : false ,
"HasSafeHarbor" : true ,
"CCCIsReassigned" : false ,
"IsSandBox" : false
}
Multiple Number Request (POST)
For checking multiple numbers, use HTTP POST with a JSON body:
curl --location --request POST \
'https://dataapi.dncscrub.com/v1.5/Data/EnhancedRND' \
--header 'loginId: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--data-raw '{
"Data": [
{ "phoneNumber": "7075276405", "date": "20211109" },
{ "phoneNumber": "5039367187", "date": "20211109" }
],
"UseSandbox": false,
"ProjId": "Demo"
}'
Response
[
{
"PhoneNumber" : "7075276405" ,
"IsReassigned" : false ,
"HasSafeHarbor" : true ,
"CCCIsReassigned" : false ,
"IsSandBox" : false
},
{
"PhoneNumber" : "5039367187" ,
"IsReassigned" : false ,
"HasSafeHarbor" : true ,
"CCCIsReassigned" : false ,
"IsSandBox" : false
}
]
Response Fields
Field Type Description PhoneNumberString The phone number checked IsReassignedBoolean/null Combined result: true = reassigned, false = not reassigned, null = unknown HasSafeHarborBoolean true if FCC safe harbor exemption may be availableCCCIsReassignedBoolean/null Result from CCC’s carrier data only (for informational purposes) IsSandBoxBoolean true if response was generated in sandbox mode, false for production data
Data Source Comparison
Feature FCC RND CCC Carrier Data Authority Plus (Combined) Data Start Date Jan 27, 2021 July 2018 July 2018 Update Frequency Monthly Daily Daily Coverage All FCC carriers Major carriers Best of both
Rate Limits
Limit Value Numbers per request 1,000
Enhanced Features
Reassigned Authority Plus includes:
Daily updates
Enhanced accuracy for edge cases
Extended historical data
Use Cases
Safe harbor required
High-value compliance scenarios
Enhanced audit trail requirements
Consent dates go further back than January 2021
Getting Started
Schedule a meeting to:
Discuss your compliance requirements
Get pricing information
RND Basic API Basic reassigned number API using FCC Reassigned Number Database.
Test Numbers Test phone numbers for development