GET /health
Service health probe. Free to call - no MPP payment required.
URL: https://mpp.oculr.xyz/health
Auth: None.
Request
No parameters, no body.
Response
200 OK
{
"status": "ok",
"version": "1"
}| Field | Type | Notes |
|---|---|---|
status | "ok" | Always "ok" when the server responds. Any non-200 means down. |
version | string | Current API version. |
Examples
Shell
curl -s https://mpp.oculr.xyz/healthTypeScript
const { status } = await fetch('https://mpp.oculr.xyz/health').then(r => r.json())
if (status !== 'ok') throw new Error('oculr is down')Errors
Any non-200 response means the service is unreachable or starting up. No structured error body is returned.