List contributor ROI
get
https://api.intelig.ai/api/v1/intelig/finance/roi/contributors
Auth: Authorization: ApiKey <key> (an API key sent as
Bearer is rejected) or Authorization: Bearer <jwt>
for a dashboard session. operationId: listContributorRoi
Returns a paginated list of contributor ROI data with 0-100 scores, letter grades (A+ through F), and cost efficiency metrics (cost per PR, commit, review). Filters by from/to date range (max 90 days) and optional budgetId. Supports pagination via page and size parameters.
Example request
curl -X GET "https://api.intelig.ai/api/v1/intelig/finance/roi/contributors?from=string&to=string" \
-H "Authorization: ApiKey $INTELIG_API_KEY" Query parameters
| Name | Type | Required | Description |
|---|---|---|---|
from | string (date) | yes | — |
to | string (date) | yes | — |
budgetId | integer (int64) | no | — |
page | integer (int32) | no | — |
size | integer (int32) | no | — |
Response 200
application/json · ApiResponseListContributorRoiResponseDto
| Field | Type | Description |
|---|---|---|
success | boolean | — |
message | string | — |
data | ContributorRoiResponseDto[] | — |
Status codes
200— Paginated contributor ROI list returned400— Invalid date range, range exceeds 90 days, or missing org context401— Authentication required403— Insufficient permissions for Finance pillar429— —
Every response is wrapped in { success, message, data }. A 4xx means the request
is wrong — do not retry it unchanged. A 429 carries Retry-After in seconds.