Skip to main content

Documentation Index

Fetch the complete documentation index at: https://databridge-add-core-funcs.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

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"