Skip to content
Stashtab Vault API
Esc
navigateopen⌘Jpreview

List manifests

GET/manifests
Authorization
X-API-KeyAPI key · headerrequired
API key in format `sk_*`. Scoped to your partner account; server-side use only.
Query parameters
pageinteger
Page number (1-based).
min 1 · default: 1
page_sizeinteger
Items per page.
min 1 · max 250 · default: 25
statusManifestStatus
Allowed:submittedreceivingreconciled
referencestring
Exact match on your reference.
Responses
200Paginated manifests, newest first.
page_sizeintegerrequired
Requested page size.
countintegerrequired
Items in this page.
totalintegerrequired
Total items across all pages.
current_page_numberintegerrequired
next_page_numberinteger | null
nextstring<uri> | null
URL of the next page.
previousstring<uri> | null
previous_page_numberinteger | null
resultsManifest[]required
Show properties
Array of Manifest
idstring<uuid>required
referencestringrequired
sourceManifestSource
Where this purchase batch came from.
Allowed:card_showmarketplacedistributorother
statusManifestStatusrequired
`submitted` — open, nothing matched yet; `receiving` — items are arriving and matching; `reconciled` — the reconciliation report has been finalized.
Allowed:submittedreceivingreconciled
expected_arrival_startstring<date> | null
expected_arrival_endstring<date> | null
line_countintegerrequired
created_atstring<date-time>required
400Validation failed.
codeErrorCoderequired
Stable machine-readable error vocabulary for v1.
Allowed:validation_errorstate_conflictenvironment_mismatchunsupported_destinationinvalid_api_keynot_foundrate_limited
extraobjectrequired
Structured details such as field errors or SKU availability.
messagestringrequired
Human-readable summary.
401Missing, invalid, expired, or environment-mismatched API key.
codeErrorCoderequired
Stable machine-readable error vocabulary for v1.
Allowed:validation_errorstate_conflictenvironment_mismatchunsupported_destinationinvalid_api_keynot_foundrate_limited
extraobjectrequired
Structured details such as field errors or SKU availability.
messagestringrequired
Human-readable summary.
429Rate limit exceeded for this API key.
codeErrorCoderequired
Stable machine-readable error vocabulary for v1.
Allowed:validation_errorstate_conflictenvironment_mismatchunsupported_destinationinvalid_api_keynot_foundrate_limited
extraobjectrequired
Structured details such as field errors or SKU availability.
messagestringrequired
Human-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"
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"
    }
  ]
}