Get started with PDC API
This page helps you make your first successful call to the Pentaho Data Catalog API in a few minutes. You will learn how to authenticate, run a request, and check the results.
2
3
5
Call a protected endpoint
curl -X GET "https://<your-domain>/api/public/v1/notifications" \
-H "accept: application/json" \
-H "Authorization: Bearer <accessToken>"[
{
"id": "notif_12345",
"type": "JOB_COMPLETED",
"message": "Profiling job finished successfully",
"timestamp": "2025-09-01T08:30:00Z"
}
]Last updated
Was this helpful?

