---
title: "Get AI/ML services summary with trend data"
method: GET
path: "/api/v1/databricks/ai-ml-services/summary"
tags: ["DATABRICKS", "Databricks", "Databricks AI/ML Services"]
---

# Get AI/ML services summary with trend data

`GET /api/v1/databricks/ai-ml-services/summary`

Get AI/ML services summary with trend data.

Returns trend data for:
- Model Serving (DBUs and costs)
- Vector Search (DBUs and costs)
- AI Gateway (DBUs and costs)

Data is aggregated by the specified granularity (day, week, or month).
Frontend calculates totals by summing the trend data.

Query Parameters:
- start_date: Start date (YYYY-MM-DD), defaults to 30 days ago
- end_date: End date (YYYY-MM-DD), defaults to today
- granularity: Time granularity ('day', 'week', 'month'), defaults to 'day'
- workspace_id: Comma-separated workspace IDs or 'all' (default)

Returns:
- Array of data points with DBUs and costs per service, aggregated by granularity

## Query parameters

- `start_date` string, date, nullable — Start date (YYYY-MM-DD), defaults to 30 days ago
- `end_date` string, date, nullable — End date (YYYY-MM-DD), defaults to today
- `granularity` string — Time granularity: 'day', 'week', or 'month'
- `workspace_id` string, nullable — Comma-separated workspace IDs to filter, or 'all'
- `navigationSource` string, nullable

## Headers

- `x-tenant` string, required

## Response `200`

Successful Response

- AIMLServicesTrendPoint[]
  - `date` string, required — Date in YYYY-MM-DD format
  - `total_dbus` number — Total DBUs across all services
  - `total_cost_usd` number — Total cost in USD across all services
  - `model_serving_dbus` number — Model serving DBUs
  - `model_serving_cost_usd` number — Model serving cost in USD
  - `vector_search_dbus` number — Vector search DBUs
  - `vector_search_cost_usd` number — Vector search cost in USD
  - `ai_gateway_dbus` number — AI Gateway DBUs
  - `ai_gateway_cost_usd` number — AI Gateway cost in USD

## Other responses

- `403` — Not authorized
- `404` — Resource not found
- `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)
