Get a verification
curl --request GET \
--url https://tawked.com/v1/verify/{id} \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://tawked.com/v1/verify/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://tawked.com/v1/verify/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}import requests
url = "https://tawked.com/v1/verify/{id}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"id": "b7e5c2b0-9c1a-4e2f-8f2a-3a6b0e9d1c44",
"status": "pending",
"channel": "sms",
"to": "+966551234567",
"reference": "order-42",
"attempts_remaining": 3,
"resends_remaining": 3,
"expires_at": "2026-09-01T12:34:56.789Z",
"verified_at": null,
"created_at": "2026-09-01T12:29:56.789Z"
}{
"error": "service_required"
}{
"error": "unauthorized"
}{
"error": "account_not_active"
}{
"error": "not_found"
}{
"error": "too_many_requests"
}{
"error": "internal_error"
}Verify
Get a verification
Reads the current state of a verification — status, channel, destination, and how many attempts and resends remain — without consuming an attempt.
GET
/
v1
/
verify
/
{id}
Get a verification
curl --request GET \
--url https://tawked.com/v1/verify/{id} \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://tawked.com/v1/verify/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://tawked.com/v1/verify/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}import requests
url = "https://tawked.com/v1/verify/{id}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"id": "b7e5c2b0-9c1a-4e2f-8f2a-3a6b0e9d1c44",
"status": "pending",
"channel": "sms",
"to": "+966551234567",
"reference": "order-42",
"attempts_remaining": 3,
"resends_remaining": 3,
"expires_at": "2026-09-01T12:34:56.789Z",
"verified_at": null,
"created_at": "2026-09-01T12:29:56.789Z"
}{
"error": "service_required"
}{
"error": "unauthorized"
}{
"error": "account_not_active"
}{
"error": "not_found"
}{
"error": "too_many_requests"
}{
"error": "internal_error"
}Authorizations
bearerKeyheaderKey
Authorization: Bearer
Path Parameters
Query Parameters
Partner keys only: passed as a query parameter (?application=…) since a GET request has no body. Same meaning as on start; the legacy name service is accepted identically.