API health check
curl --request GET \
--url https://api.interactsms.com/healthimport requests
url = "https://api.interactsms.com/health"
response = requests.get(url)
print(response.text)using RestSharp;
var options = new RestClientOptions("https://api.interactsms.com/health");
var client = new RestClient(options);
var request = new RestRequest("");
var response = await client.GetAsync(request);
Console.WriteLine("{0}", response.Content);
HttpResponse<String> response = Unirest.get("https://api.interactsms.com/health")
.asString();<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.interactsms.com/health",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}const options = {method: 'GET'};
fetch('https://api.interactsms.com/health', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));Account
Health Check
Returns 200 OK if the service is online.
GET
/
health
API health check
curl --request GET \
--url https://api.interactsms.com/healthimport requests
url = "https://api.interactsms.com/health"
response = requests.get(url)
print(response.text)using RestSharp;
var options = new RestClientOptions("https://api.interactsms.com/health");
var client = new RestClient(options);
var request = new RestRequest("");
var response = await client.GetAsync(request);
Console.WriteLine("{0}", response.Content);
HttpResponse<String> response = Unirest.get("https://api.interactsms.com/health")
.asString();<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.interactsms.com/health",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}const options = {method: 'GET'};
fetch('https://api.interactsms.com/health', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));Response
200
Service is healthy
Last modified on July 14, 2026
⌘I