Portability Lookup
Introduction
Mobile Number Portability (MNP) lookup APIs allow you to discover information about a provided number by directly querying mobile number portability databases.
Each response contains:
date
— time when the request was executed (ISO8601)msisdn
— the number for which the response has been returnedmcc
— Mobile country code (learn more)mnc
— Mobile network code (learn more)the mobile network code to which the number currently belongs
omnc
— Original network codereturned in case the
ported
flag istrue
originalNetwork
(the network to which the number originally belonged)countryName
countryPrefix
networkName
portedNetwork
(the network to which the number is currently ported)countryName
countryPrefix
networkName
ported
— whether the number has been portedprice
— the price for this requestresponse
— the result code (see below)
Response values
0
Success
✈️
1
General error
Repeating the request won't yield a different result
5
Invalid number
Number length not valid
6
Not resolved
Number cannot be resolved due to missing coverage
7
Timeout
Number cannot be resolved due to timeout
A list of MSISDNs to look up.
An optional URL to receive a callback with the results.
200
401
500
POST /lookup/mnp HTTP/1.1
Host: number-api.bind.hr
X-API-KEY: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 28
{
"msisdn": [
"4473481234567"
]
}
[
{
"date": "2025-09-01T09:06:46.285Z",
"mcc": "234",
"mnc": "15",
"msisdn": "4473481234567",
"omnc": "15",
"originalNetwork": {
"countryName": "United Kingdom",
"countryPrefix": "44",
"networkName": "Vodafone UK"
},
"ported": false,
"price": 0.0006,
"response": 0
}
]