Are you an LLM? Read llms.txt for a summary of the docs, or llms-full.txt for the full context.
Skip to content

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"
}
FieldTypeNotes
status"ok"Always "ok" when the server responds. Any non-200 means down.
versionstringCurrent API version.

Examples

Shell

curl -s https://mpp.oculr.xyz/health

TypeScript

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.

Related