Check API liveness
curl --request GET \
--url https://api.phone-harness.com/healthimport requests
url = "https://api.phone-harness.com/health"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.phone-harness.com/health', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"ok": true
}Service
Check API liveness
Public API-process liveness only. Does not certify phone availability, credits, capacity, video, or successful provisioning.
GET
https://api.phone-harness.com
/
health
Check API liveness
curl --request GET \
--url https://api.phone-harness.com/healthimport requests
url = "https://api.phone-harness.com/health"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.phone-harness.com/health', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"ok": true
}Response
200 - application/json
API is responding.