Verify
Trigger SMS Verification Code POST /verify/sms/send-code
Check SMS Verification Code POST /verify/sms/check-code
Get Verification GET /verify/{verificationId}
List Verifications GET /verify
Verify Phone Number POST /verify/number
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Body
tostringRequired
serviceNamestringOptional
timeoutSecondsnumberOptional
codeLengthnumberOptional
realtimebooleanOptional
bypassbooleanOptional
externalIdstringOptional
longcodeIdnumberOptional
poolIdstringOptional
senderNamestringOptional
gatedbooleanOptional
Responses
200
Success
application/json
400
BadRequestError
application/json
401
UnauthorizedError
application/json
403
ForbiddenError
application/json
500
InternalServerError
application/json
post
/verify/sms/send-codePOST /v3/verify/sms/send-code HTTP/1.1
Host: api.mobile-text-alerts.com
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 224
{
"to": "text",
"serviceName": "text",
"timeoutSeconds": 1,
"codeLength": 1,
"realtime": true,
"bypass": true,
"externalId": "text",
"longcodeId": 1,
"tags": {
"ANY_ADDITIONAL_PROPERTY": "text"
},
"poolId": "text",
"senderName": "text",
"gated": true
}{
"to": "text",
"timeoutSeconds": 1,
"type": "sms",
"status": "PENDING",
"messageId": "text",
"verificationId": "text",
"deliverable": true,
"reason": "text",
"carrier": "text",
"lineType": "text",
"risk": null
}Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Body
tostringOptional
verificationIdstringOptional
codestringRequired
Responses
200
Success
application/json
400
BadRequestError
application/json
401
UnauthorizedError
application/json
403
ForbiddenError
application/json
500
InternalServerError
application/json
post
/verify/sms/check-codePOST /v3/verify/sms/check-code HTTP/1.1
Host: api.mobile-text-alerts.com
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 51
{
"to": "text",
"verificationId": "text",
"code": "text"
}{
"to": "text",
"verificationId": "text",
"status": "PENDING"
}Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Path parameters
verificationIdstringRequired
Responses
200
Success
application/json
Responseall of
400
BadRequestError
application/json
401
UnauthorizedError
application/json
403
ForbiddenError
application/json
500
InternalServerError
application/json
get
/verify/{verificationId}GET /v3/verify/{verificationId} HTTP/1.1
Host: api.mobile-text-alerts.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"success": true,
"error": "text",
"message": "text",
"data": {
"id": "text",
"number": "text",
"serviceName": "text",
"timeoutSeconds": 1,
"codeLength": 1,
"createdAt": "2025-11-28T01:11:19.044Z",
"expiresAt": "2025-11-28T01:11:19.044Z"
}
}Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Query parameters
Responses
200
Success
application/json
Responseall of
400
BadRequestError
application/json
401
UnauthorizedError
application/json
403
ForbiddenError
application/json
500
InternalServerError
application/json
get
/verifyGET /v3/verify HTTP/1.1
Host: api.mobile-text-alerts.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"success": true,
"error": "text",
"message": "text",
"data": {
"rows": [
{
"id": "text",
"number": "text",
"serviceName": "text",
"timeoutSeconds": 1,
"codeLength": 1,
"createdAt": "2025-11-28T01:11:19.044Z",
"expiresAt": "2025-11-28T01:11:19.044Z"
}
],
"page": 1,
"pageSize": 1,
"total": 1
}
}Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Body
numberstringRequired
bypassbooleanOptional
Responses
200
Success
application/json
400
BadRequestError
application/json
401
UnauthorizedError
application/json
403
ForbiddenError
application/json
500
InternalServerError
application/json
post
/verify/numberPOST /v3/verify/number HTTP/1.1
Host: api.mobile-text-alerts.com
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 31
{
"number": "text",
"bypass": true
}{
"deliverable": true,
"reason": "text",
"carrier": "text",
"lineType": "text",
"risk": null
}Last updated
Was this helpful?