Deployment Status
GET
/status
const url = 'https://example.com/status';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://example.com/statusSystem status for client-side routing decisions.
When running with a local coordinator (MODEL_COORDINATOR_URL set), forwards the coordinator’s /system/status. Otherwise returns a basic healthy response.
Responses
Section titled “Responses”Successful Response
Media typeapplication/json
Examplegenerated
example