Live in 5 Minutes.
One endpoint. One API key. Full TWAT Technology™ output.
cURL
JavaScript
Python
Response
curl -X GET \
"https://api.hunuuhealth.com/api/twat/score?name=Mayo+Clinic&location=Rochester+MN&type=provider" \
-H "x-api-key: YOUR_API_KEY" \
-H "Content-Type: application/json"
const response = await fetch(
'https://api.hunuuhealth.com/api/twat/score?name=Mayo+Clinic&type=provider',
{
headers: {
'x-api-key': 'YOUR_API_KEY',
'Content-Type': 'application/json'
}
}
);
const data = await response.json();
console.log(`SIQ Score: ${data.twat.score} (${data.twat.tier})`);
import requests
response = requests.get(
'https://api.hunuuhealth.com/api/twat/score',
params={'name': 'Mayo Clinic', 'type': 'provider'},
headers={'x-api-key': 'YOUR_API_KEY'}
)
data = response.json()
print(f"SIQ: {data['twat']['score']} — {data['twat']['tier']}")
{
"name": "Mayo Clinic",
"location": "Rochester, MN",
"type": "provider",
"twat": {
"score": 96,
"tier": "ELITE",
"table": 98,
"wow": 94,
"allure": 89,
"trust": 97,
"sources": 9,
"refreshed": "2026-04-05T12:00:00Z"
},
"engines_used": ["TWAT", "VLOUT", "FDA", "NPI"]
}