Checkio API
post/{tenantId}/v1/verification/mobile-check

Mobile check

Requires Authentication
Verification

Validates a mobile phone number

Path Parameters

NameTypeDescription
tenantId
required
string (uuid)Tenant UUID

Request Body

required
mobileNumber
string
required
countryCode
string

Responses

Mobile check result

Response Bodyapplication/json
meta
ResponseMeta
request
object
wallet
object
data
object
mobileNumber
string
normalized
string
passed
boolean
isValid
boolean
isActive
boolean
isReserved
boolean
- Whether the number is in a TV/Film reserved range
networkName
string

Code Examples

curl -X POST 'https://api-next.checkio.co.uk/{tenantId}/v1/verification/mobile-check' \
  -H 'Authorization: Bearer {token}' \
  -H 'Content-Type: application/json' \
  -d '{
  "mobileNumber": "string",
  "countryCode": "string"
}'