Skip to main content
GET
/
check_phone_number
Check phone number against DNC registry
curl --request GET \
  --url https://api.meerapi.com/check_phone_number \
  --header 'Authorization: Bearer <token>'
{
"do_not_call": true,
"timestamp": "2025-12-16T14:32:10.123456789Z",
"dnc_list_source": "https://us.gov"
}

Authorizations

Authorization
string
header
required

API key authentication. Provide your API key in the Authorization header:

Authorization: Bearer YOUR_API_KEY

You can also omit the "Bearer" prefix:

Authorization: YOUR_API_KEY

Query Parameters

phone_number
string
required

Phone number to check (international format recommended, e.g., +1234567890)

Response

Successfully checked phone number

do_not_call
boolean
required

Whether the phone number is on a Do Not Call list

Example:

true

timestamp
string<date-time>
required

RFC3339 timestamp of when the check was performed

Example:

"2025-12-16T14:32:10.123456789Z"

dnc_list_source
string | null

The source of the DNC listing (null if not on any list)

Example:

"National Do Not Call Registry"