def ping() -> Dict[str, Any]

Returns

  • Dict[str, Any]: A JSON object with two keys:
    • status – always "ok" when the server is running
    • message – human-readable confirmation string

Example

from morphik import Morphik

db = Morphik()
resp = db.ping()
assert resp["status"] == "ok"