Skip to content

GoTo Checker API: Real-time Phone Number Verification

Check whether a phone number is registered on GoTo, with instant real-time response.

Code example:

curl -X POST 'https://api.ekycpro.ai/v1/check' \
-H 'X-API-Key: YOUR_API_KEY' \
-H 'Content-Type: application/json' \
-d '{"service_type": "goto", "identifier": "+1234567890"}'

Success response:

{
"success": true,
"data": {
"identifier": "+1234567890",
"service_type": "goto",
"registered": true,
"details": {},
"cached": false,
"checked_at": "2026-04-14T10:00:00Z"
}
}

Error response:

{
"success": false,
"error": "check failed: worker goto: server too busy"
}

HTTP Request

POST https://api.ekycpro.ai/v1/check

Request Headers

HeaderDescription
X-API-KeyYour API key (required)
Content-Typeapplication/json

Request Body

FieldTypeRequiredDescription
service_typestringYesgoto
identifierstringYesPhone number in E.164 format (e.g. +1234567890)

Response Fields

FieldTypeDescription
successboolWhether the request succeeded
data.identifierstringThe checked identifier
data.service_typestringService type
data.registeredboolWhether account is registered
data.detailsobjectAdditional details
data.cachedboolWhether result is from cache
data.checked_atstringTimestamp of the check (ISO 8601)

Status Codes

StatusDescription
200Check completed successfully
400Bad request (invalid service_type or identifier)
401Unauthorized (missing or invalid API key)
500Internal server error