Costs#

Read-only access to cost records and aggregate cost reporting across activities.

Authentication required

All endpoints require a Bearer token in the Authorization header. See the Authentication guide for setup instructions.

GET /v1/costs#

List cost records across activities, including creator details, with global amount or creation-date sorting before pagination.

bash
GET /v1/costs?page_index=0&page_size=25&organization_id=1c7743a8-6410-4a9e-9f3b-2c1d5e8a4b01
Authorization: Bearer {token}

Parameters#

NameTypeRequiredDescription
pageIndexintegerRequiredZero-based page index for pagination.
pageSizeintegerRequiredNumber of items per page (1-100).
organizationIdstring (UUID)RequiredOrganization identifier.
activityIdstring (UUID)Filter by activity identifier.
creatorIdstring (UUID)Filter by creator identifier.
campaignIdstring (UUID)Filter by campaign identifier.
searchTermstringSearch cost category, description, or activity name.
categoryIdstring (UUID)Filter by cost category identifier.
sortBy'amount' | 'createdAt'Cost field to sort by.
sortDirection'asc' | 'desc'Sort direction: ascending or descending.

Response#

Returns { items, totalCount, facets, _meta } with paginated results.

GET /v1/costs/count#

Count cost records with optional activity and creator filters.

bash
GET /v1/costs/count?organization_id=1c7743a8-6410-4a9e-9f3b-2c1d5e8a4b01
Authorization: Bearer {token}

Parameters#

NameTypeRequiredDescription
organizationIdstring (UUID)RequiredOrganization identifier.
activityIdstring (UUID)Filter by activity identifier.
creatorIdstring (UUID)Filter by creator identifier.
campaignIdstring (UUID)Filter by campaign identifier.

Response#

Returns { count, _meta }.

GET /v1/costs/stats#

Aggregate total spend, cost coverage, non-campaign spend, and largest category using the active cost filters.

bash
GET /v1/costs/stats?organization_id=1c7743a8-6410-4a9e-9f3b-2c1d5e8a4b01
Authorization: Bearer {token}

Parameters#

NameTypeRequiredDescription
organizationIdstring (UUID)RequiredOrganization identifier.
activityIdstring (UUID)Unique identifier (UUID v4).
creatorIdstring (UUID)Unique identifier (UUID v4).
campaignIdstring (UUID)Unique identifier (UUID v4).
searchTermstring
categoryIdstring (UUID)Unique identifier (UUID v4).

Response#

Returns { data, _meta } with the result.