Read the sandbox health state
GET
/health
curl -X GET 'https://example.com/health'package main
import ( "context" "net/http")
func main() { ctx := context.Background() req, err := http.NewRequestWithContext(ctx, "GET", "https://example.com/health", nil) if err != nil { panic(err) } resp, err := http.DefaultClient.Do(req) if err != nil { panic(err) } defer resp.Body.Close()}import requests
response = requests.request("GET", "https://example.com/health")print(response.json())const response = await fetch('https://example.com/health', { method: 'GET' });const data = await response.json();Responses
Section titled “ Responses ”The sandbox is healthy
Media type application/json
object
ok
required
boolean
Example generated
{ "ok": true}