List manifests
GET
/manifestsAuthorization
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
statusManifestStatusAllowed:
submittedreceivingreconciledreferencestringExact match on your reference.
Responses
200Paginated manifests, 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 | nullresultsManifest[]requiredShow propertiesHide properties
Array of
Manifestidstring<uuid>requiredreferencestringrequiredsourceManifestSourceWhere this purchase batch came from.
Allowed:
card_showmarketplacedistributorotherstatusManifestStatusrequired`submitted` — open, nothing matched yet; `receiving` — items are arriving and matching; `reconciled` — the reconciliation report has been finalized.
Allowed:
submittedreceivingreconciledexpected_arrival_startstring<date> | nullexpected_arrival_endstring<date> | nullline_countintegerrequiredcreated_atstring<date-time>required400Validation 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/manifests" \
-H "X-API-Key: YOUR_API_KEY"const response = await fetch("https://api.vault.stashtab.gg/v1/manifests", {
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",
"reference": "string",
"source": "card_show",
"status": "submitted",
"expected_arrival_start": "2019-08-24",
"expected_arrival_end": "2019-08-24",
"line_count": 0,
"created_at": "2019-08-24T14:15:22Z"
}
]
}{
"code": "validation_error",
"extra": {},
"message": "string"
}{
"code": "validation_error",
"extra": {},
"message": "string"
}{
"code": "validation_error",
"extra": {},
"message": "string"
}