DATABRICKS
Databricks
Databricks Jobs

Get aggregate cost summary for the Jobs list

Aggregate cost summary feeding the Jobs page hero cards.

Returns Total Cost, Total DBU Cost, Total Cloud Cost, and Total Realized Savings (summed from the dbx_jobs_cost_savings cost mart). total_dbu_cost is ALWAYS DBU-only — service .get_jobs_summary stays flag-agnostic, mirroring /cost/overview's _attach_cloud_cost pattern of keeping flag knowledge at the endpoint. total_cost composes at this layer:

  • showCloudCosts on AND the tenant has a real (non-None) total_cloud_cost -> total_cost = total_dbu_cost + total_cloud_cost (rounded from the already-rounded cloud figure, same rounding rule as cost_api._attach_cloud_cost, so the three displayed numbers reconcile exactly).
  • showCloudCosts off -> total_cloud_cost is forced null and total_cost stays DBU-only.
  • showCloudCosts on but no cloud-cost feed (total_cloud_cost is None) -> nothing to fold in; total_cost stays DBU-only.
get/api/v1/databricks/jobs/summary

Query parameters

start_datestring date required

Start date for the cost window

Start date for the cost window

end_datestring date

End date for the cost window

End date for the cost window

workspace_idstring nullable

Filter by workspace ID

Filter by workspace ID

navigationSourcestring nullable

Headers

x-tenantstring required

Response

Successful Response

total_costnumber
total_dbu_costnumber
total_cloud_costnumber nullable
total_realized_savingsnumber

Changes