When working with Jedox Integrator, logs are your best friend for troubleshooting and monitoring. But did you know you can access these logs programmatically using the Jedox Logs API? This is super useful if you want to automate log checks, integrate them into external monitoring tools, or simply avoid clicking through the UI every time.
In this post, I’ll show you how to:
- Understand the Logs API endpoints
- Access log data using REST calls
- Use filters to get exactly what you need
Step 1: Why Use the Logs API?
Normally, you check logs in Cloud Console→Server Logs. But if you’re building automated workflows or need logs for external dashboards, the API is the way to go. It gives you:
- Direct access to log entries (Integrator jobs, system events, etc.)
- Ability to filter by date, level, or component
- Integration with tools like Power BI, Databricks, or custom scripts
Step 2: The API Endpoint
The base endpoint is:
GET /https://logs.${Instance}.cloud.jedox.com/logs
Step 3: Authentication
You’ll need your Token, which can be found in Cloud Console Settings. Add them as Bearer Auth.

Example header:
Authorization: Bearer <token>
Step 4: Example Request
Here’s a simple example:

Step 5: Filtering Options
You can use parameters like:
limit– number of entries- sort – asc and desc
fromandto– date range in ISO format
GET /api/system/logs?from=2025-12-01T00:00:00&to=2025-12-03T23:59:59
Since the endpoint returns columns like Message, date, level and service users can filter data by them in the TableView, for example. Here we see the Integrator logs only:

Step 6: Practical Use Case
Imagine you run nightly ETL jobs in Jedox and want to check for errors automatically. You can schedule a script that calls the Logs API after each job and sends an alert if any ERROR entries appear. This saves time and ensures you catch issues before they impact users.
Final Thoughts
The Jedox Logs API is a simple but powerful way to automate monitoring and integrate them into your workflows. Whether you’re building a dashboard, setting up alerts, or just want quick access to it, this API makes it easy.
Project can be found here. If you think this helped you in your projects and saved you some time don’t hesitate to support our blog at https://buymeacoffee.com/stefanvelickovic33. It helps us to run and host the website.
