Mobile Number IntelligenceMNRL Check

MNRL Check — Mobile Revocation List Lookup

Check if a mobile number has been disconnected or revoked by the telecom operator. Essential fraud check for financial onboarding.

curl -X GET "https://production.deepvue.tech/v1/verification/mnrl/verify?mobile_number=example_string" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_TOKEN (JWT)" \
  -H "x-api-key: YOUR_API_KEY"
{
  "code": 200,
  "timestamp": 1742331301024,
  "transaction_id": "e1537caeafa147fa8965f40842e70192",
  "sub_code": "LATEST_MNRL_RECORD_FOUND",
  "message": "MNRL record found",
  "data": {
    "mnrl_record_found": true,
    "phone_number": "6000014143",
    "latest_revocation_status": true,
    "first_revocation_month": "September",
    "first_revocation_year": 2024,
    "latest_revocation_month": "January",
    "latest_revocation_year": 2025
  }
}
GET
/v1/verification/mnrl/verify
GET
Bearer Token (JWT)
Bearer Tokenstring
Required

ACCESS_TOKEN generated from the authorize endpoint. Should be included in the header as Bearer .

ACCESS_TOKEN generated from the authorize endpoint. Should be included in the header as Bearer .
API Key (header: x-api-key)
x-api-keystring
Required

The CLIENT_SECRET provided to you. This header parameter is required for authentication purposes.

The CLIENT_SECRET provided to you. This header parameter is required for authentication purposes.
Request Preview
Response

Response will appear here after sending the request

Authentication

header
Authorizationstring
Required

Bearer token (JWT). ACCESS_TOKEN generated from the authorize endpoint. Should be included in the header as Bearer .

header
x-api-keystring
Required

API Key for authentication. The CLIENT_SECRET provided to you. This header parameter is required for authentication purposes.

Query Parameters

Responses

codeinteger
timestampinteger
transaction_idstring
sub_codestring
messagestring
dataobject

Overview

The MNRL Check API verifies mobile numbers against the MNRL (Mobile Number Revocation List) database. This service determines whether a given phone number has been revoked and tracks the history of any revocations.

The API accepts a mobile number as input and queries the MNRL database to determine whether a record exists for the provided number, the current revocation status, and the timeline of revocations (first occurrence and most recent).

Response outcomes

The API returns three possible outcomes:

  • Latest MNRL record found — A record exists with a current active revocation status.
  • MNRL record found — A record exists but is not currently revoked.
  • No MNRL record found — No revocation history exists for the number.

All successful responses include the phone number, revocation status, and relevant month/year information for tracking purposes.