Health
GET
/api/health
const url = 'https://example.com/api/health';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
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://example.com/api/health \ --header 'Authorization: Bearer <token>'Report API health and how many configured ComfyUI nodes are reachable.
Authorizations
Section titled “Authorizations”Responses
Section titled “Responses”Successful Response
Media typeapplication/json
Response Health Api Health Get
object
key
additional properties
any
Examplegenerated
{}