Skip to main content

List Cost Entries

GET 

/api/cost-entries

Returns a paginated list of cost entries, newest cost date first by default.

Required scope: purchase-orders:read

Grant this scope to your token under Settings → Developer → Personal Access Tokens.

Allowed sorts: id, description, reference_number, status, cost_date, amount, amount_in_tenant_currency, created_at, updated_at, supplier_name, cost_entry_type_name, allocations_total, unallocated_total. Prefix with - for descending.

filter[search] matches description, reference number, ID, supplier name and cost entry type name. filter[source.is]=bill returns only entries created from bills; filter[source.is_not]=bill returns manual entries. filter[has_amortization.is]=true/false filters by presence of an amortization schedule.

Column filters accept operator suffixes in the form filter[column.operator], e.g. filter[name.contains]=main or filter[created_at.between]=2026-01-01,2026-06-30. Text operators: is, is_not, contains, does_not_contain, starts_with, ends_with, is_empty, is_not_empty, is_one_of. Numeric operators: is, is_not, greater_than, greater_than_or_equal, less_than, less_than_or_equal, between, is_empty, is_not_empty. Date operators: is, is_not, on_or_before, on_or_after, between, is_empty, is_not_empty.

The response includes an unfiltered_total field with the total number of cost entries regardless of filters.

Authentication: Requires Bearer token.

Request

Responses

OK

Response Headers
    Content-Type