Attribution Data API
Get attribution time-series
Returns time-bucketed multi-series cost data grouped by any metadata dimension key. Call it with a GET request to /attribution-data/time-series, authenticated with a restricted API key and the "costs:read" scope.
Returns time-bucketed multi-series cost data grouped by any metadata dimension key. Granularity is chosen from the date range: daily for ranges up to 30 days, weekly up to 90 days, monthly beyond. The five highest-cost dimension values each get their own series; when more than five values exist, the remaining values are aggregated into an extra series with key "other" and label "Other". Requests count toward your per-API-key rate limit; sustained overruns return 429 with the standard error envelope.
Authentication and scopes
Authenticate with a restricted API key in the Authorization: Bearer <key> header. This endpoint requires the costs:read scope.
Parameters
| Name | In | Type | Required | Description |
|---|---|---|---|---|
dimension | query | string | Yes | Metadata dimension key to group by (e.g., "model", "provider", "agent_id"). |
start_date | query | string | Yes | Start of date range (ISO 8601, inclusive). |
end_date | query | string | Yes | End of date range (ISO 8601, exclusive). |
filter_key | query | string | No | Optional cross-dimension filter key (e.g., "environment"). Applied only when filter_value is also provided; a request with filter_key alone returns the unfiltered series. |
filter_value | query | string | No | Optional cross-dimension filter value (exact match). Applied only when filter_key is also provided; a request with filter_value alone returns the unfiltered series. |
Response fields
Fields returned in the 200 response body. Nested objects are listed under their parent. A field marked optional may be absent from the body; one marked nullable is always present but its value may be null.
| Field | Type | Description |
|---|---|---|
series | object[] | Array of series (top 5 + Other). |
key | string | Dimension value key. |
label | string | Display label for this series. |
data_points | object[] | Time-bucketed data points. |
date | string | Date of the time bucket (ISO 8601). |
total_cost | string | Total cost for this time bucket. |
event_count | number (double) | Number of events in this time bucket. |
granularity | daily | weekly | monthly | Adaptive granularity based on date range. |
Error codes
Errors return the standard error envelope with a code, message, and a correlationId you can quote to support.
| Status | When it happens |
|---|---|
400 | Invalid request data. Check that start_date and end_date are valid ISO 8601 dates and fix the field named in error.message. |
401 | Missing or invalid API key. Send your key as Authorization: Bearer YOUR_API_KEY. |
403 | API key lacks the costs:read scope. Create or update an API key with the costs:read scope, then retry. |
429 | Rate limit or plan quota exceeded. Slow down and retry after the current window resets. |
Rate limits and retries
Rate limit or plan quota exceeded. Slow down and retry after the current window resets.