Documentation IndexFetch the complete documentation index at: /docs/llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /docs/llms.txt
Use this file to discover all available pages before exploring further.
Health-check endpoint – verify that your Morphik server is reachable
def ping() -> Dict[str, Any]
async def ping() -> Dict[str, Any]
Dict[str, Any]
status
"ok"
message
from morphik import Morphik db = Morphik() resp = db.ping() assert resp["status"] == "ok"
from morphik import AsyncMorphik async with AsyncMorphik() as db: resp = await db.ping() print(resp)
Was this page helpful?