Siren

List Fulfillments

Returns a paginated list of fulfillments with filtering, sorting, and field selection.

Last updated: April 9, 2026

List Fulfillments

GET /siren/v1/fulfillments

Returns a paginated list of fulfillments. Results are wrapped by the ListResponseWrapperInterceptor.

Query Parameters

ParameterTypeDefaultDescription
statusstringFilter by fulfillment status
fieldsstringcore fieldsComma-separated list of fields to include
includestringLegacy: extended to include extra fields
numberinteger10Results per page
offsetinteger0Pagination offset
orderBystringidSort field. Allowed: id, status, dateCreated
orderstringDESCSort direction: ASC or DESC

The response includes an x-siren-estimated-count header with the total number of matching records.

Example

GET /siren/v1/fulfillments?status=pending&fields=id,status,payoutCount,totalValue
[
  {
    "id": 5,
    "status": "pending",
    "payoutCount": 12,
    "totalValue": 45000
  }
]