curl https://memorymachines-gateway-prod-btf57kda.uc.gateway.dev/v1/health
import requests
response = requests.get(
"https://memorymachines-gateway-prod-btf57kda.uc.gateway.dev/v1/health"
)
print(response.json())
const response = await fetch(
'https://memorymachines-gateway-prod-btf57kda.uc.gateway.dev/v1/health'
);
console.log(await response.json());
{
"status": "healthy",
"message": "Memory Machines Platform API is running."
}
API Reference
Health Check
Check API status
GET
/
v1
/
health
curl https://memorymachines-gateway-prod-btf57kda.uc.gateway.dev/v1/health
import requests
response = requests.get(
"https://memorymachines-gateway-prod-btf57kda.uc.gateway.dev/v1/health"
)
print(response.json())
const response = await fetch(
'https://memorymachines-gateway-prod-btf57kda.uc.gateway.dev/v1/health'
);
console.log(await response.json());
{
"status": "healthy",
"message": "Memory Machines Platform API is running."
}
Check if the Engramme API is running and healthy. No authentication required.
curl https://memorymachines-gateway-prod-btf57kda.uc.gateway.dev/v1/health
import requests
response = requests.get(
"https://memorymachines-gateway-prod-btf57kda.uc.gateway.dev/v1/health"
)
print(response.json())
const response = await fetch(
'https://memorymachines-gateway-prod-btf57kda.uc.gateway.dev/v1/health'
);
console.log(await response.json());
{
"status": "healthy",
"message": "Memory Machines Platform API is running."
}
Use Cases
- Monitoring: Check API availability from your monitoring system
- Debugging: Verify connectivity before troubleshooting other issues
- Load Balancers: Configure health checks for high availability setups

