Health
Health check endpoints
Health status
Get server health status
Response Body
Server health status
TypeScript Definitions
Use the response body type in TypeScript.
statusstringcurl -X GET "https://api.anycrawl.dev/health"fetch("https://api.anycrawl.dev/health")package main
import (
"fmt"
"net/http"
"io/ioutil"
)
func main() {
url := "https://api.anycrawl.dev/health"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := ioutil.ReadAll(res.Body)
fmt.Println(res)
fmt.Println(string(body))
}import requests
url = "https://api.anycrawl.dev/health"
response = requests.request("GET", url)
print(response.text){
"status": "ok"
}