On a new tab, navigate to the Morphik website and click the “Get Started” button on the top right.
2
Create Application
Once you have signed up, you will be redirected to the Morphik Cloud dashboard. Click the “Create Application” button to create a new application. Enter your app name and click “Create Application”.
3
Copy your credentials
You should now see your application in the dashboard with “Copy URI” and “Copy Token” buttons:
While most users integrate Morphik into their applications via our SDKs and APIs, we also provide a comprehensive web interface that serves as both a playground and management console.
For production use, you’ll want to integrate Morphik using our SDKs or API:
1
Create a virtual environment
Copy
Ask AI
python3.12 -m venv .venv
2
Activate the virtual environment
Copy
Ask AI
source .venv/bin/activate
3
Install the SDK
Copy
Ask AI
pip install morphik
4
Ingest and Query your first file
Copy
Ask AI
from morphik import Morphik# Initialize the Morphik clientmorphik = Morphik(uri="your-morphik-uri")# Ingest a filedoc = morphik.ingest_file(file_path="super/complex/file.pdf")doc.wait_for_completion()# Query the fileresponse = morphik.query(query="What percentage of Morphik users are building something cool?")print(response) # Responds with 100% :)
We have an open community with lots of discussion where you can get help, report bugs, and share your experiences with Morphik. If you need assistance or want to contribute, please join our community!