Skip to main content
GET
/
health
Health Check
curl --request GET \
  --url https://api.agentpowers.ai/health
import requests

url = "https://api.agentpowers.ai/health"

response = requests.get(url)

print(response.text)
const options = {method: 'GET'};

fetch('https://api.agentpowers.ai/health', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
{
  "status": "<string>",
  "version": "<string>"
}

Response

200 - application/json

Successful Response

status
string
required
version
string
required