List Instance Trackings
GET/api/integrations/17track/instances/:instance/trackings
Paginated list of shipment_trackings rows scoped to a single 17TRACK integration instance. Powers the "Trackings" sub-page of the 17TRACK integration UI.
Any valid API token can call this endpoint — no specific scope required. Manage tokens.
Filters / sorts / per_page are read directly from the request via Spatie QueryBuilder.
Supported filters:
filter[search]— substring match on tracking_numberfilter[delivery_status]— comma-separated DeliveryStatusEnum valuesfilter[carrier_code]— comma-separated 17TRACK numeric carrier codesfilter[trackable_type]— comma-separated trackable type slugs OR FQCNsfilter[date_from],filter[date_to]— m/d/Y, applied to created_at
Allowed sorts: created_at, last_event_at, delivered_at (default: -created_at).
Responses:
200 OK— paginated tracking rows401 Unauthorized— missing/invalid bearer token404 Not Found— instance id does not exist
Request
Responses
- 200
- 401
- 403
- 404
- 429
OK
Response Headers
Unauthenticated — the bearer token is missing, revoked, expired, or malformed. Never retry automatically; fix the credential. See the Errors guide.
Forbidden — the token lacks a required scope, the endpoint is not available to API tokens, or the user behind the token lacks the permission. A human must adjust the token scopes or user permissions; do not retry.
Not found — no record with the given identifier (or the route does not exist). Verify the ID before retrying.
Rate limited — platform limit is 1,000 requests/min; individual tokens may carry lower limits. Honor the Retry-After header before retrying. See the Rate Limits guide.