---
title: "Get all Databricks jobs"
method: GET
path: "/api/v1/databricks/jobs"
tags: ["DATABRICKS", "Databricks", "Databricks Jobs"]
---

# Get all Databricks jobs

`GET /api/v1/databricks/jobs`

Get list of all jobs with run statistics.

## Query parameters

- `workspace_id` string, nullable — Filter by workspace ID
- `start_date` string, date, required — Start date for run statistics
- `end_date` string, date — End date for run statistics
- `page` integer — Page number (1-indexed)
- `page_size` integer — Items per page
- `sortAttribute` string, nullable — Sort column name. Valid columns: job_name, workspace_name, total_runs, successful_runs, failed_runs, success_rate, avg_duration_seconds, last_run_time, total_dbus, total_cost, annualized_total_cost, auto_tune_savings.
- `sortOrder` string, nullable — Sort direction: 'asc' or 'desc'
- `job_names` string[], nullable — Filter by job names
- `creators` string[], nullable — Filter by creator user names
- `workspaces` string[], nullable — Filter by workspace display names
- `auto_tune_enabled` boolean, nullable — Filter by Auto Tune state: true for On, false for Off
- `navigationSource` string, nullable

## Headers

- `x-tenant` string, required

## Response `200`

Successful Response

- JobsResponse — Response for listing jobs.
  - `jobs` JobSummary[], required
    - `job_id` string, required
    - `job_name` string, required
    - `workspace_id` string, required
    - `workspace_name` string, nullable
    - `instance_id` integer, nullable
    - `creator_id` string, nullable
    - `creator_user_name` string, nullable
    - `total_runs` integer
    - `successful_runs` integer
    - `failed_runs` integer
    - `success_rate` number
    - `avg_duration_seconds` number
    - `last_run_time` string, date-time, nullable
    - `total_dbus` number
    - `estimated_cost_usd` number
    - `total_cloud_cost` number, nullable
    - `annualized_total_cost` number
    - `auto_tune_enabled` boolean
    - `realized_savings` number
    - `estimated_annualized_savings` number
  - `total_count` integer, required — Total number of jobs
  - `page` integer — Current page number
  - `page_size` integer — Items per page
  - `total_pages` integer — Total number of pages

## Other responses

- `403` — Not authorized
- `404` — No ClickHouse database configured
- `422` — Validation Error

---

[API](https://skmtc.net/myaltimate/apis/fastapi.md) · [All operations](https://skmtc.net/myaltimate/apis/fastapi/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/myaltimate/fastapi/versions/aab3fe5c9f05/schema)
