Look Up Mobile Numbers
The Lookup endpoint simplifies the discovery of mobile products by mapping mobile numbers to their respective operators. This helps minimize failed transactions and improve the user experience.
Note
For complete information, see the API reference documentation, <> Mobile Number
- Resolves Mobile Station International Subscriber Directory Numbers (MSISDN) for mobile phones to the correct mobile operator.
- Uses DT One’s intelligent algorithms to increase lookup accuracy.
- Reduces transaction failures by ensuring operator validation before purchase.
- Always allow users to confirm or manually select the operator, especially in regions where number portability is common.
- Keep in mind that lookup results may not reflect recent number porting — offering user confirmation helps ensure correct product selection.
The response will include a list of operators for the country associated with the provided MSISDN. The operator with the field "identified": true is the one identified by our system as the most likely match. However, we provide the full list of available operators in that country to allow flexibility in case the user wishes to select a different one.
POST Content-Type: application/json Content: {"mobile_number":"+528344260876"}
[
{
"country": {
"iso_code": "MEX",
"name": "Mexico",
"regions": null
},
"id": 1414,
"identified": true,
"name": "Telcel Mexico",
"regions": null
},
{
"country": {
"iso_code": "MEX",
"name": "Mexico",
"regions": null
},
"id": 1412,
"identified": false,
"name": "ATT Mexico",
"regions": null
},
{
"country": {
"iso_code": "MEX",
"name": "Mexico",
"regions": null
},
"id": 1413,
"identified": false,
"name": "Movistar Mexico",
"regions": null
},
{
"country": {
"iso_code": "MEX",
"name": "Mexico",
"regions": null
},
"id": 1415,
"identified": false,
"name": "Unefon Mexico",
"regions": null
},
{
"country": {
"iso_code": "MEX",
"name": "Mexico",
"regions": null
},
"id": 2857,
"identified": false,
"name": "Virgin Mexico",
"regions": null
},
{
"country": {
"iso_code": "MEX",
"name": "Mexico",
"regions": null
},
"id": 4115,
"identified": false,
"name": "Nemi Mexico",
"regions": null
},
{
"country": {
"iso_code": "MEX",
"name": "Mexico",
"regions": null
},
"id": 4116,
"identified": false,
"name": "MiMovil Mexico",
"regions": null
},
{
"country": {
"iso_code": "MEX",
"name": "Mexico",
"regions": null
},
"id": 4568,
"identified": false,
"name": "Bait Mexico",
"regions": null
},
{
"country": {
"iso_code": "MEX",
"name": "Mexico",
"regions": null
},
"id": 5501,
"identified": false,
"name": "FreedomPop Mexico",
"regions": null
},
{
"country": {
"iso_code": "MEX",
"name": "Mexico",
"regions": null
},
"id": 5601,
"identified": false,
"name": "Flash Mobile Mexico",
"regions": null
},
{
"country": {
"iso_code": "MEX",
"name": "Mexico",
"regions": null
},
"id": 5624,
"identified": false,
"name": "Internet Para El Bienestar Mexico",
"regions": null
}
]
Updated over 1 year ago
Did this page help you?