List fulfillments
Filterable, paginated fulfillment history. Look up by QID (single or bulk via qids), by your own external_ref, by status, or by date — this doubles as the bulk status endpoint.
GET
/fulfillmentsAuthorization
X-API-KeyAPI key · headerrequiredAPI key in format `sk_*`. Scoped to your partner account; server-side use only.
Query parameters
pageintegerPage number (1-based).
min 1 · default: 1
page_sizeintegerItems per page.
min 1 · max 250 · default: 25
statusFulfillmentStatusAllowed:
pendingprocessingshippeddeliveredcancelledexceptionreturnedqidQIDFulfillments containing this item.
qidsstringComma-separated QIDs for bulk status lookup.
external_refstringExact match on your reference.
created_afterstring<date-time>created_beforestring<date-time>Responses
200Paginated fulfillments, newest first.
page_sizeintegerrequiredRequested page size.
countintegerrequiredItems in this page.
totalintegerrequiredTotal items across all pages.
current_page_numberintegerrequirednext_page_numberinteger | nullnextstring<uri> | nullURL of the next page.
previousstring<uri> | nullprevious_page_numberinteger | nullresultsFulfillment[]requiredShow propertiesHide properties
Array of
Fulfillmentidstring<uuid>requiredqidsQID[]requiredstatusFulfillmentStatusrequiredFulfillment lifecycle. Returned means custody has resumed and the item will repeat intake.
Allowed:
pendingprocessingshippeddeliveredcancelledexceptionreturnedprocessing_stageProcessingStage | nullWarehouse sub-stage while status is processing. It may be null when granular telemetry is unavailable; status is always authoritative.
Allowed:
pickedpackedverifiedlabeledqueued_for_carriershipping_addressShippingAddress | anyShow propertiesHide properties
Any of:
ShippingAddress
recipient_namestringrequiredstreetstringrequiredstreet_2string | nullcitystringrequiredstatestringrequiredzipstringrequiredcountrystringrequiredany
anycarrierstring | nullCarrier code once the label exists.
servicestring | nullService code once the label exists.
tracking_numberstring | nulltracking_urlstring<uri> | nullissueFulfillmentIssue | anyShow propertiesHide properties
Any of:
FulfillmentIssue
codestringrequiredMachine-readable issue type.
messagestringrequiredoccurred_atstring<date-time>requiredany
anyexternal_refstring | nullcreated_atstring<date-time>requiredupdated_atstring<date-time>requiredtypeFulfillmentTyperequiredAllowed:
standardwithdrawalspecial_instructionsstring | nulldeliver_bystring<date> | nullverified_address_idstring<uuid> | null400Validation failed.
codeErrorCoderequiredStable machine-readable error vocabulary for v1.
Allowed:
validation_errorstate_conflictenvironment_mismatchunsupported_destinationinvalid_api_keynot_foundrate_limitedextraobjectrequiredStructured details such as field errors or SKU availability.
messagestringrequiredHuman-readable summary.
401Missing, invalid, expired, or environment-mismatched API key.
codeErrorCoderequiredStable machine-readable error vocabulary for v1.
Allowed:
validation_errorstate_conflictenvironment_mismatchunsupported_destinationinvalid_api_keynot_foundrate_limitedextraobjectrequiredStructured details such as field errors or SKU availability.
messagestringrequiredHuman-readable summary.
429Rate limit exceeded for this API key.
codeErrorCoderequiredStable machine-readable error vocabulary for v1.
Allowed:
validation_errorstate_conflictenvironment_mismatchunsupported_destinationinvalid_api_keynot_foundrate_limitedextraobjectrequiredStructured details such as field errors or SKU availability.
messagestringrequiredHuman-readable summary.
Try it
Server
Authorization
Parameters
Request
curl -X GET "https://api.vault.stashtab.gg/v1/fulfillments" \
-H "X-API-Key: YOUR_API_KEY"const response = await fetch("https://api.vault.stashtab.gg/v1/fulfillments", {
method: "GET",
headers: {
"X-API-Key": "YOUR_API_KEY"
}
});Response
{
"page_size": 0,
"count": 0,
"total": 0,
"current_page_number": 0,
"next_page_number": 0,
"next": "http://example.com",
"previous": "http://example.com",
"previous_page_number": 0,
"results": [
{
"id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
"qids": [
"7c9e6679-7425-40de-944b-e07fc1f90ae7"
],
"status": "shipped",
"processing_stage": "picked",
"shipping_address": {
"recipient_name": "Jordan Alvarez",
"street": "480 Cedar St",
"street_2": "Apt 12",
"city": "Austin",
"state": "TX",
"zip": "78701",
"country": "US"
},
"carrier": "usps",
"service": "usps_priority_mail",
"tracking_number": "9400111899223857267224",
"tracking_url": "http://example.com",
"issue": {
"code": "address_undeliverable",
"message": "string",
"occurred_at": "2019-08-24T14:15:22Z"
},
"external_ref": "string",
"created_at": "2019-08-24T14:15:22Z",
"updated_at": "2019-08-24T14:15:22Z",
"type": "standard",
"special_instructions": "string",
"deliver_by": "2019-08-24",
"verified_address_id": "e92daf1e-afde-425b-aaf7-6374949522b4"
}
]
}{
"code": "validation_error",
"extra": {},
"message": "string"
}{
"code": "validation_error",
"extra": {},
"message": "string"
}{
"code": "validation_error",
"extra": {},
"message": "string"
}