Fulfillments

Shipments and deliveries — fulfillment volume, carriers, tracking and delivery timing, one row per fulfillment.

28 fields — 17 dimensions, 11 metrics. Date clauses (SINCE, UNTIL, DURING) use createdAt.

The live, authoritative list is always GET /v1/datasets — this page is regenerated from the same catalog, but the endpoint reflects exactly what is deployed.

Query it

FROM fulfillments
  SHOW orders_fulfilled
  GROUP BY status
  SINCE -30d

See Querying with SoloQL for the language.

This dataset is queryable through SoloQL; it has no record-retrieval endpoint.

Fields

FieldTypeRoleDescription
statusstringdimensionRaw fulfillment status, such as success, cancelled or error.
display_statusstringdimensionMerchant-facing fulfillment status shown in the admin, such as Fulfilled, In transit or Delivered.
shipment_statusstringdimensionCarrier-reported shipment status, such as in_transit, out_for_delivery or delivered. Only present once the carrier reports movement.
tracking_companystringdimensionCarrier handling the shipment, such as UPS, Canada Post or DHL.
tracking_numberstringdimensionCarrier tracking number for the shipment.
servicestringdimensionService that fulfilled the order — manual, or a third-party fulfillment service.
location_namestringdimensionName of the location the fulfillment was shipped from.
order_namestringdimensionName of the order this fulfillment belongs to, e.g. #1001.
fulfillment_namestringdimensionName of the fulfillment itself, e.g. #1001.1.
requires_shippingbooleandimensionWhether the fulfilled items required physical shipping.
created_atdatedimensionWhen the fulfillment was created — the moment the order was fulfilled. The dataset's default date field, so SINCE/UNTIL window on this.
in_transit_atdatedimensionWhen the carrier first reported the shipment in transit.
delivered_atdatedimensionWhen the carrier reported the shipment delivered.
estimated_delivery_atdatedimensionCarrier's estimated delivery date, when one was provided.
updated_atdatedimensionWhen the fulfillment record was last updated.
fulfillment_event_daysnumberdimensionWhole days from the order being placed to this fulfillment being created. Skips fulfillments whose order date is missing rather than counting them as same-day.
orders_fulfillednumbermetricNumber of orders fulfilled.
orders_shippednumbermetricNumber of orders whose fulfillment the carrier has reported in transit.
orders_deliverednumbermetricNumber of orders whose fulfillment the carrier has reported delivered.
orders_with_trackingnumbermetricNumber of fulfilled orders that carry a carrier tracking number.
orders_with_tracking_included_ratepercentmetricShare of fulfilled orders that include carrier tracking.
fulfillmentsnumbermetricNumber of fulfillment records — higher than Orders fulfilled when an order ships in several packages.
total_quantitynumbermetricTotal units included in the fulfillments.
median_hours_to_delivernumbermetricMedian hours from fulfillment to delivery, across fulfillments the carrier has reported delivered.
median_hours_order_to_fulfillmentnumbermetricMedian hours from the order being placed to it being fulfilled. Only counts fulfillments that carry their order's placed-at.
on_time_deliveriesnumbermetricNumber of delivered orders that arrived on or before the carrier's estimated delivery date.
on_time_ratepercentmetricShare of delivered orders that arrived on or before the estimated delivery date.
storestringdimensionThe shop the record belongs to. Filter with WHERE store IN ('Shop name') or GROUP BY store.