Check liveness
Check liveness
GET
Check liveness
Response
200 - application/json
The process is alive.
Example:
"ok"
Last modified on August 10, 2026
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Testnet preview: Stellar exact is live; upto remains proposed and pubnet is gated. Review release status.
curl --request GET \
--url https://facilitator-production-8430.up.railway.app/health/liveconst options = {method: 'GET'};
fetch('https://facilitator-production-8430.up.railway.app/health/live', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://facilitator-production-8430.up.railway.app/health/live"
response = requests.get(url)
print(response.text){
"status": "ok"
}curl --request GET \
--url https://facilitator-production-8430.up.railway.app/health/liveconst options = {method: 'GET'};
fetch('https://facilitator-production-8430.up.railway.app/health/live', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://facilitator-production-8430.up.railway.app/health/live"
response = requests.get(url)
print(response.text){
"status": "ok"
}The process is alive.
"ok"