Number Verification

POST

/api/number-verification

Verify a phone number

Request Body

Phone number to be verified.

numberstring

Example: "+121XXXXXXXX"
Status codeDescription
200Successfully verified phone number
400Bad request
401Unauthorized
500Internal server error
curl
curl -X POST "https://tinyapis.io/api/number-verification" \
  -d '{
  "number": "+121XXXXXXXX"
}'
Example Response
{
  "dialcode_e164": "",
  "timezone": "",
  "timezone_short": "",
  "timezone_utc_offset": "",
  "region": "",
  "sub_region": "",
  "administrative_area_level_3": null,
  "administrative_area_level_2": "",
  "administrative_area_level_1": "",
  "administrative_area_level_1_short": "",
  "locality": "",
  "sublocality_level_1": null,
  "point_of_interest": null,
  "neighborhood": "",
  "clli": "",
  "country": "",
  "country_short": "",
  "postal_code": "",
  "operating_company_name": "",
  "operating_company_type": "",
  "lata": "",
  "ocn": "",
  "line_type": "",
  "location_routing_number": "",
  "ported": false,
  "risk_rating": "",
  "risk_level": 0,
  "ported_date": null,
  "dialcode_invalid": false,
  "dialcode_impossible": false,
  "switch_assignment_date": "",
  "alg": "",
  "message": ""
}