POST `https://api.nomado.eu/hlr`
You can choose one of the authentication methods referenced here.
The JSON object representing the numbers to lookup. Should be included in request body.
options | description | required | default value |
---|---|---|---|
numbers | array<string> Array of E164 formatted mobile numbers |
Yes |
status code | description |
---|---|
200 | success Request sent successfully |
400 | bad request Incorrect or missing parameters |
401 | unauthorized Invalid credentials or incorrect authentication method |
Headers
Content-type: application/json
Authorization: BASIC base64encodedCredentials
Body
{
"numbers": ["32412345678","32423456789"]
}
{
"code": 200,
"data": {
"3245678901": { ... },
"3245678902": { ... },
"valid_numbers": 2
},
"cost": 0.05
}