curl -X GET "https://memoryapi-production.up.railway.app/health"
fetch("https://memoryapi-production.up.railway.app/health")
.then((response) => response.json())
.then((data) => console.log(data));
import requests
response = requests.get('https://memoryapi-production.up.railway.app/health')
print(response.json())
{
"status": "ok"
}
System
Health Check
Check API health status
GET
/
health
curl -X GET "https://memoryapi-production.up.railway.app/health"
fetch("https://memoryapi-production.up.railway.app/health")
.then((response) => response.json())
.then((data) => console.log(data));
import requests
response = requests.get('https://memoryapi-production.up.railway.app/health')
print(response.json())
{
"status": "ok"
}
Overview
Simple health check endpoint to verify the API is running and responsive. No authentication required.Response
string
Health status of the API (returns “ok” when healthy)
curl -X GET "https://memoryapi-production.up.railway.app/health"
fetch("https://memoryapi-production.up.railway.app/health")
.then((response) => response.json())
.then((data) => console.log(data));
import requests
response = requests.get('https://memoryapi-production.up.railway.app/health')
print(response.json())
{
"status": "ok"
}