Health check (alias)
GET
/v1/health
const url = 'https://api-v1.tailwind.ai/v1/health';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://api-v1.tailwind.ai/v1/healthAlias of /health. Check if the API is running. No authentication required.
Responses
Section titled “Responses”API is healthy
Media typeapplication/json
object
status
string
Example
{ "status": "ok"}