Source Intelligence
Sweep 28 Aug 2026 ยท 00:00Z Build v2.1.250 478 read Stable v2.1.236 Latest v2.1.250 Next v2.1.250 Feeds RSS JSON llms.txt

DisclaimerUnofficial, and not affiliated with Anthropic. Nearly all of this is read straight out of what ships: npm bundles, captured prompts, published docs. Anthropic's own notes go in verbatim, marked as theirs. The rest is my reading, and every entry carries the strings behind it. If one looks wrong, vote it down and say why.

One change

Cost Report

api/admin/cost_report

first seen The page's own history The capture it came from

Nearest release: v2.1.245, published an hour after this site recorded the change. Shown because the two are within 24 hours of each other. Nothing here says the release caused the edit.

api/admin/cost_report Changed · +21 / -20 lines

### Query parameters ### Headers #### Response (200) ## Domain types ### Query Parameters ### Header Parameters #### Response ## Domain Types

from line 1
----
-title: Cost Report
-url: https://platform.claude.com/docs/en/api/admin/cost_report
----
-
 # Cost Report
 
 ## Get Cost Report
 
-**get** `/v1/organizations/cost_report`
+**GET** `/v1/organizations/cost_report`
 
 Get Cost Report
 
-### Query Parameters
+### Query parameters
 
 - `starting_at: string`
 
from line 13
   Time buckets that start on or after this RFC 3339 timestamp will be returned.
   Each time bucket will be snapped to the start of the minute/hour/day in UTC.
 
+  format: date-time
+
 - `bucket_width: optional "1d"`
 
   Time granularity of the response data.
 
-  - `"1d"`
+  default: 1d
 
 - `ending_at: optional string`
 
   Time buckets that end before this RFC 3339 timestamp will be returned.
 
+  format: date-time
+
 - `group_by: optional array of "description" or "workspace_id"`
 
   Group by any subset of the available options.
from line 39
 
   Maximum number of time buckets to return in the response.
 
+  default: 7, maximum: 31, minimum: 1
+
 - `page: optional string`
 
   Optionally set to the `next_page` token from the previous response.
 
-### Header Parameters
+### Headers
 
 - `"anthropic-beta": optional array of string`
 
from line 55
 
 ### Returns
 
-- `CostReport object { data, has_more, next_page }`
+- `CostReport object`
 
-  - `data: array of object { ending_at, results, starting_at }`
+  - `data: array of object`
 
     List of time buckets for this page, oldest first: one per `bucket_width` interval, including intervals with no costs (their `results` list is empty). A page holds at most `limit` buckets.
 
from line 65
 
       End of the time bucket (exclusive) in RFC 3339 format.
 
-    - `results: array of object { amount, context_window, cost_type, 7 more }`
+    - `results: array of object`
 
       List of cost items for this time bucket. There may be multiple items if one or more `group_by[]` parameters are specified.
 
from line 156
 
 ### Example
 
-```http
+```bash
 curl https://api.anthropic.com/v1/organizations/cost_report \
     -H 'anthropic-version: 2023-06-01' \
     -H "Authorization: Bearer $ANTHROPIC_OAUTH_TOKEN"
 ```
 
-#### Response
+#### Response (200)
 
 ```json
 {
from line 191
 }
 ```
 
-## Domain Types
+## Domain types
 
 ### Cost Report
 
-- `CostReport object { data, has_more, next_page }`
+- `CostReport object`
 
-  - `data: array of object { ending_at, results, starting_at }`
+  - `data: array of object`
 
     List of time buckets for this page, oldest first: one per `bucket_width` interval, including intervals with no costs (their `results` list is empty). A page holds at most `limit` buckets.
 
from line 205
 
       End of the time bucket (exclusive) in RFC 3339 format.
 
-    - `results: array of object { amount, context_window, cost_type, 7 more }`
+    - `results: array of object`
 
       List of cost items for this time bucket. There may be multiple items if one or more `group_by[]` parameters are specified.