Endpoints
- Address Verification
- AML
- Document Verification
- Identity Verification
- KYB
- Payment Services
- Phone Status
Phone Status Service
Phone Status Service API Documentation
curl --request POST \
--url https://api-umbrella.io/api/services/phoneid \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"phone": "+436504142107"
}'
{
"reference_id": "36475B3EB1DC0C2492E2889F4EACF2CC",
"sub_resource": "live",
"status": {
"code": 300,
"description": "Transaction successfully completed",
"updatedOn": "2024/09/09T12:43:42.701105Z"
},
"errors": [
"<string>"
],
"phoneType": {
"code": "2",
"description": "MOBILE"
},
"blocklisting": {
"blocked": false,
"blockCode": 0,
"blockDescription": "Not blocked"
},
"numbering": {
"cleansing": {
"call": {
"countryCode": "43",
"phoneNumber": "6504142107",
"cleansedCode": 100,
"minLength": 7,
"maxLength": 13
},
"sms": {
"countryCode": "43",
"phoneNumber": "6504142107",
"cleansedCode": 100,
"minLength": 7,
"maxLength": 13
}
},
"original": {
"completePhoneNumber": "+436504142107",
"countryCode": "43",
"phoneNumber": "6504142107"
}
},
"location": {
"city": "Countrywide",
"state": "<string>",
"zip": "<string>",
"metroCode": "<string>",
"county": "<string>",
"country": {
"name": "Austria",
"iso2": "AT",
"iso3": "AUT"
},
"coordinates": {
"latitude": "<string>",
"longitude": "<string>"
},
"timeZone": {
"name": "<string>",
"utcOffsetMax": "+1",
"utcOffsetMin": "+1"
}
},
"carrier": {
"name": "Mass Response Service GmbH"
},
"live": {
"subscriberStatus": "ACTIVE",
"deviceStatus": "REACHABLE",
"roaming": "UNAVAILABLE",
"roamingCountry": "<string>",
"roamingCountryIso2": "<string>"
}
}
For a usage description of the Phone Status Service, please refer to the Phone Status page.
Endpoint
POST /phoneid
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Body
The phone number to check, including country code.
"+436504142107"
Response
Unique reference ID for the transaction.
"36475B3EB1DC0C2492E2889F4EACF2CC"
Sub-resource type (e.g., 'live').
"live"
List of errors, if any.
Country code.
"43"
Phone number.
"6504142107"
Cleansing status code.
100
Minimum allowed length.
7
Maximum allowed length.
13
Country code.
"43"
Phone number.
"6504142107"
Cleansing status code.
100
Minimum allowed length.
7
Maximum allowed length.
13
City associated with the phone number.
"Countrywide"
State associated with the phone number.
ZIP code associated with the phone number.
Metro code associated with the phone number.
County associated with the phone number.
Subscriber status (e.g., 'ACTIVE').
"ACTIVE"
Device status (e.g., 'REACHABLE').
"REACHABLE"
Roaming status (e.g., 'UNAVAILABLE').
"UNAVAILABLE"
Roaming country name.
ISO 2-letter roaming country code.
curl --request POST \
--url https://api-umbrella.io/api/services/phoneid \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"phone": "+436504142107"
}'
{
"reference_id": "36475B3EB1DC0C2492E2889F4EACF2CC",
"sub_resource": "live",
"status": {
"code": 300,
"description": "Transaction successfully completed",
"updatedOn": "2024/09/09T12:43:42.701105Z"
},
"errors": [
"<string>"
],
"phoneType": {
"code": "2",
"description": "MOBILE"
},
"blocklisting": {
"blocked": false,
"blockCode": 0,
"blockDescription": "Not blocked"
},
"numbering": {
"cleansing": {
"call": {
"countryCode": "43",
"phoneNumber": "6504142107",
"cleansedCode": 100,
"minLength": 7,
"maxLength": 13
},
"sms": {
"countryCode": "43",
"phoneNumber": "6504142107",
"cleansedCode": 100,
"minLength": 7,
"maxLength": 13
}
},
"original": {
"completePhoneNumber": "+436504142107",
"countryCode": "43",
"phoneNumber": "6504142107"
}
},
"location": {
"city": "Countrywide",
"state": "<string>",
"zip": "<string>",
"metroCode": "<string>",
"county": "<string>",
"country": {
"name": "Austria",
"iso2": "AT",
"iso3": "AUT"
},
"coordinates": {
"latitude": "<string>",
"longitude": "<string>"
},
"timeZone": {
"name": "<string>",
"utcOffsetMax": "+1",
"utcOffsetMin": "+1"
}
},
"carrier": {
"name": "Mass Response Service GmbH"
},
"live": {
"subscriberStatus": "ACTIVE",
"deviceStatus": "REACHABLE",
"roaming": "UNAVAILABLE",
"roamingCountry": "<string>",
"roamingCountryIso2": "<string>"
}
}