diff --git a/docs/my-website/docs/proxy/cost_tracking.md b/docs/my-website/docs/proxy/cost_tracking.md
index de1a63a4c32..b63fab1067e 100644
--- a/docs/my-website/docs/proxy/cost_tracking.md
+++ b/docs/my-website/docs/proxy/cost_tracking.md
@@ -138,14 +138,22 @@ Navigate to the Usage Tab on the LiteLLM UI (found on https://your-proxy-endpoin
## API Endpoints to get Spend
-#### Getting Spend Reports - To Charge Other Teams, API Keys
+#### Getting Spend Reports - To Charge Other Teams, Customers
-Use the `/global/spend/report` endpoint to get daily spend per team, with a breakdown of spend per API Key, Model
+Use the `/global/spend/report` endpoint to get daily spend report per
+- team
+- customer [this is `user` passed to `/chat/completions` request](#how-to-track-spend-with-litellm)
+
+
+
+
##### Example Request
+👉 Key Change: Specify `group_by=team`
+
```shell
-curl -X GET 'http://localhost:4000/global/spend/report?start_date=2024-04-01&end_date=2024-06-30' \
+curl -X GET 'http://localhost:4000/global/spend/report?start_date=2024-04-01&end_date=2024-06-30&group_by=team' \
-H 'Authorization: Bearer sk-1234'
```
@@ -254,6 +262,69 @@ Output from script
```
+
+
+
+
+
+
+
+
+
+##### Example Request
+
+👉 Key Change: Specify `group_by=customer`
+
+
+```shell
+curl -X GET 'http://localhost:4000/global/spend/report?start_date=2024-04-01&end_date=2024-06-30&group_by=customer' \
+ -H 'Authorization: Bearer sk-1234'
+```
+
+##### Example Response
+
+
+```shell
+[
+ {
+ "group_by_day": "2024-04-30T00:00:00+00:00",
+ "customers": [
+ {
+ "customer": "palantir",
+ "total_spend": 0.0015265,
+ "metadata": [ # see the spend by unique(key + model)
+ {
+ "model": "gpt-4",
+ "spend": 0.00123,
+ "total_tokens": 28,
+ "api_key": "88dc28.." # the hashed api key
+ },
+ {
+ "model": "gpt-4",
+ "spend": 0.00123,
+ "total_tokens": 28,
+ "api_key": "a73dc2.." # the hashed api key
+ },
+ {
+ "model": "chatgpt-v-2",
+ "spend": 0.000214,
+ "total_tokens": 122,
+ "api_key": "898c28.." # the hashed api key
+ },
+ {
+ "model": "gpt-3.5-turbo",
+ "spend": 0.0000825,
+ "total_tokens": 85,
+ "api_key": "84dc28.." # the hashed api key
+ }
+ ]
+ }
+ ]
+ }
+]
+```
+
+