Health
curl --request GET \
--url https://api.eventory.ai/watchlist/health \
--header 'apikey: <api-key>'import requests
url = "https://api.eventory.ai/watchlist/health"
headers = {"apikey": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {apikey: '<api-key>'}};
fetch('https://api.eventory.ai/watchlist/health', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"status": "ok"
}Watchlist
Health
Liveness probe for the Watchlist API. Authentication is required like any other call.
Cost: free.
GET
/
watchlist
/
health
Health
curl --request GET \
--url https://api.eventory.ai/watchlist/health \
--header 'apikey: <api-key>'import requests
url = "https://api.eventory.ai/watchlist/health"
headers = {"apikey": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {apikey: '<api-key>'}};
fetch('https://api.eventory.ai/watchlist/health', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"status": "ok"
}