# List Deliveries Retrieve a paginated list of deliveries created on the Rendr platform. Results are returned with the most recent deliveries first, with a maximum of 50 deliveries per page. *** ## Endpoint ``` GET {{domain}}/{{tenant_id}}/deliveries?page=1 ``` **Authentication:** Bearer token required via the `Authorization` header. *** ## Pagination | Parameter | Type | Description | | --------- | ------- | ------------------------------------------------------------------------------------ | | `page` | Integer | The page number to retrieve. Defaults to `1`. Each page returns up to 50 deliveries. | *** ## Filters The following optional query parameters can be used to filter results: | Parameter | Type | Description | | ----------------- | ------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------- | | `store_reference` | String | Filter by the store's internal reference ID. Example: `?store_reference=STORE123` | | `status` | String | Filter by the current delivery status. See [Status Lifecycle](/documentation/key-concepts/status-lifecycle) for eligible values. Example: `?status=collected` | | `manifest_status` | String | Filter by manifest status. Accepted values: `pending`, `ready`, `manifested`. Example: `?manifest_status=pending` | | `within_days` | Integer | Return only deliveries created within the last X days. Example: `?within_days=7` | *** ## Response Each delivery in the response is returned as a full delivery object. See [Create Delivery](/api-reference/deliveries/create-a-delivery) for a complete description of all response fields.