---
title: "Order - Get All"
method: GET
path: "/order/get_all"
tags: ["order"]
---

# Order - Get All

`GET /order/get_all`

Retrieve all orders without pagination. Use with caution on large datasets.

## Query parameters

- `start` string, date, required — Start date
- `end` string, date, required — End date
- `tags` string[] — Filter by tag IDs (ObjectId strings referencing the tag collection)
- `store_ids` string[] — Filter by store IDs

## Response `200`

All orders in date range

- object
  - `orders` OrderShippedListItem[], required — Order list
    - `store_id` string — Store identifier
    - `order_number` string — Order number
    - `status` 'unstarted' | 'in_progress' | 'shipped' | 'cancelled' | 'cleared' | 'delayed' | 'stopped' | 'partially shipped' | 'archived' | 'awaiting fulfillment' | 'pending' | 'partially cleared' — Order status
    - `type` 'manual' | 'combined' | 'split' | 'combined_child' | 'split_parent' — Order type
    - `stash` OrderStash — Channel data stash
      - `store_id` string — Store ID
      - `id` string — Order ID from the channel
      - `date` string — Order date
      - `items` StashItem[] — Line items from the channel
        - `id` string — Listing item ID
        - `variant_id` string — Variant ID
        - `lineName` string — Line item name
        - `quantity` number — Quantity ordered
        - `price` number — Unit price
        - `sku` string — SKU of the listing
        - `line_id` string — Unique line item ID
        - `metadata` unknown
        - `dropshipped` boolean — Whether this item is dropshipped
      - `shipping_information` ShippingInformation — Shipping address and info
        - `name` string — Recipient name
        - `email` string — Email address
        - `address` string — Street address line 1
        - `street2` string — Street address line 2
        - `city` string — City
        - `state` string — State or province
        - `zip` string — Postal or ZIP code
        - `country` string — Country code
        - `phone` string — Phone number
        - `company` string — Company name
        - `method` string — Shipping method
        - `is_residential` boolean — Whether the address is residential
        - `is_valid` boolean — Whether the address has been validated
        - `hash` string — Address validation hash
        - `address_type` string, nullable — Address type classification
        - `address_validation_data` object — Address validation result data
      - `total` number — Order total
      - `tax` number — Tax amount
      - `shipping` number — Shipping cost
      - `discount` number — Discount amount
      - `notes` string — Channel notes
      - `alternate_order_id` string — Alternate order identifier
      - `order_id` string — Raw order ID from channel
      - `currency` string — Currency code
    - `log` OrderLogEntry[] — Order log entries
      - `user_id` string, nullable — User ID who performed the action
      - `action` string — Action performed (e.g. shipped, cancelled, overrode)
      - `time` string — ISO timestamp of the action
      - `details` unknown
    - `batch_number` number, nullable — Batch number
    - `location` string — Assigned location name
    - `warehouse_id` string — Warehouse ID
    - `shipments` Shipment[] — Shipment records
      - `_id` string — Shipment ID
      - `user_id` string — User who created the shipment
      - `time` string — Shipment creation time
      - `voided` boolean — Whether the shipment is voided
      - `return_label` boolean — Whether this is a return label
      - `deducted` boolean — Whether inventory was deducted
      - `response` object — Shipment response details
        - `provider` string — Carrier provider name
        - `service` string — Service name
        - `label_url` string — Label URL
        - `tracking_number` string — Tracking number
        - `tracking_url` string — Tracking URL
        - `amount` number — Shipping cost amount
        - `currency` string — Currency code
        - `shipment_id` string — External shipment ID
        - `signature` boolean — Signature confirmation
      - `request` object — Shipment request parameters
        - `order_items` ShipmentOrderItem[] — Items included in shipment
          - `item_id` string — Item ID
          - `variant_id` string — Variant ID
          - `quantity` number — Quantity shipped
          - `sku` string — Item SKU
        - `parcel` object — Parcel dimensions
          - `length` number — Package length
          - `width` number — Package width
          - `height` number — Package height
          - `weight` number — Package weight
          - `weight_unit` string — Weight unit
          - `dimensions_unit` string — Dimensions unit
        - `address` object — Ship-to address used in request
        - `carrier_account_ids` string[] — Carrier account IDs
        - `provider` string — Carrier provider
        - `service` unknown
    - `notes` OrderNote[] — Order notes
      - `_id` string — Note ID
      - `user_id` string — User who created the note
      - `time` string — Note creation time
      - `note` string — Note text
      - `type` 'internal' | 'customer_facing' — Note type
    - `shipped_date` string — Shipped date
    - `last_shipment_date` string — Date of last shipment
    - `tags` string[] — Array of tag IDs (ObjectId strings referencing the tag collection)
    - `channel_status` string, nullable — Channel-reported status
    - `marked_as_shipped` boolean — Whether marked as shipped on channel
    - `processing` boolean — Whether the order is processing
    - `date` string — Order date (copied from stash.date)
    - `archived` boolean — Whether the order is archived
  - `db_time` number — Query execution time (ms)
  - `process_time` number — Processing time (ms)
  - `message` string — Limit warning message if result was truncated

## Other responses

- `400` — Bad request
- `401` — Unauthorized
- `403` — Forbidden. Insufficient permissions.
- `429` — Too many requests. Rate limit exceeded.
- `500` — Internal server error.

---

[API](https://skmtc.net/skulabs/apis/skulabs-api.md) · [All operations](https://skmtc.net/skulabs/apis/skulabs-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/skulabs/skulabs-api/revisions/4b5ec0ed78a6/schema)
