Phone Lookup
Validate phone numbers and retrieve carrier data, number type (mobile, landline, VoIP), country code, and formatting info for international numbers.
Lookup a phone number
Lookup a phone number using multiple APIs. The first successful response will be returned.
GET
/
phone-lookup
Parameters
| Name | Type | Description | Required |
|---|---|---|---|
| phone | string | Optional |
Response Schema
{
"type": "object",
"properties": {
"valid": {
"type": "boolean",
"description": "Whether the phone number is valid",
"example": true
},
"countryPrefix": {
"type": "string",
"description": "The country prefix of the phone number",
"example": "+45"
},
"countryCode": {
"type": "string",
"description": "The country code of the phone number",
"example": "DK"
},
"countryName": {
"type": "string",
"description": "The country name of the phone number",
"example": "Denmark"
},
"location": {
"type": "string",
"description": "The location of the phone number",
"example": "DK, Denmark"
},
"carrier": {
"type": "string",
"description": "The carrier of the phone number",
"example": "Telenor"
},
"lineType": {
"type": "string",
"description": "The type of line of the phone number",
"example": "mobile"
}
}
}
curl --request GET \
--url "https://www.apikiss.com/api/v1/phone-lookup?phone=1234567890" \
--header 'Authorization: Bearer <token>'
{
"type": "object",
"properties": {
"valid": {
"type": "boolean",
"description": "Whether the phone number is valid",
"example": true
},
"countryPrefix": {
"type": "string",
"description": "The country prefix of the phone number",
"example": "+45"
},
"countryCode": {
"type": "string",
"description": "The country code of the phone number",
"example": "DK"
},
"countryName": {
"type": "string",
"description": "The country name of the phone number",
"example": "Denmark"
},
"location": {
"type": "string",
"description": "The location of the phone number",
"example": "DK, Denmark"
},
"carrier": {
"type": "string",
"description": "The carrier of the phone number",
"example": "Telenor"
},
"lineType": {
"type": "string",
"description": "The type of line of the phone number",
"example": "mobile"
}
}
}
Response
Click "Send Request" to see the response...
Authorizations
Authorization
header
required
Authentication token in the format "Bearer <token>"