> ## Documentation Index
> Fetch the complete documentation index at: https://docs.collectpure.com/llms.txt
> Use this file to discover all available pages before exploring further.

# List sale orders

> List the sale orders for the authenticated organization. Results are scoped to the API key's organization — you cannot access another organization's orders.

**Rate limit:** 120 requests burst, 60 requests/minute sustained.



## OpenAPI

````yaml /api-reference/openapi.json get /orders/get-sale-orders/v1
openapi: 3.1.0
info:
  title: Pure Public API
  description: >-
    Public API for accessing Pure marketplace data including products, spot
    prices, and more.
  version: 2.0.0
  license:
    name: Proprietary
servers:
  - url: https://api.collectpure.com/
    description: Production server
  - url: https://sandbox.api.collectpure.com/
    description: Sandbox server
security:
  - apiKey: []
tags:
  - name: Root
    description: API information and status
  - name: Products
    description: >-
      Enriched product endpoints — full product details, search, and catalog
      metadata
  - name: Listings
    description: Listing management — create, update, deactivate, list, and view statistics
  - name: Offers
    description: Offer management — create, update, deactivate, list, and view statistics
  - name: Orders
    description: Purchase and sale order management for authenticated organizations
  - name: Marketplace
    description: Spot prices, marketplace statistics, shipping dates, and sitemap data
  - name: Organization
    description: Organization details and settings management
  - name: Inventory
    description: >-
      Inventory management — view items and aggregate statistics for your
      organization
  - name: Products (Legacy)
    description: Legacy product endpoints — use the enriched Products endpoints instead
  - name: Listings (Legacy)
    description: Legacy listing endpoints — use Orderbook endpoints instead
  - name: Offers (Legacy)
    description: Legacy offer endpoints — use Orderbook endpoints instead
  - name: Execution - Buy
    description: Buy execution — quotes, payment methods, and order placement
  - name: Execution - Sell
    description: Sell execution — quotes, payout methods, and order placement
  - name: Sandbox
    description: >-
      Sandbox-only endpoints for discovering test data — not available in
      production
paths:
  /orders/get-sale-orders/v1:
    get:
      tags:
        - Orders
      summary: List sale orders
      description: >-
        List the sale orders for the authenticated organization. Results are
        scoped to the API key's organization — you cannot access another
        organization's orders.


        **Rate limit:** 120 requests burst, 60 requests/minute sustained.
      parameters:
        - schema:
            type: string
            enum:
              - awaiting_payment
              - payment_processing
              - fufillment_in_progress
              - payment_failed
              - order_shipped
              - order_complete
              - order_cancelled
              - partially_fufilled
          in: query
          name: status
          required: false
          description: Filter by order status
        - schema:
            default: 20
            type: integer
            minimum: 1
            maximum: 100
          in: query
          name: limit
          required: false
          description: Maximum number of orders to return (default 20, max 100)
        - schema:
            default: 0
            type: integer
            minimum: 0
            maximum: 9007199254740991
          in: query
          name: offset
          required: false
          description: Number of orders to skip (for pagination)
      responses:
        '200':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: number
                        status:
                          type: string
                          enum:
                            - awaiting_payment
                            - payment_processing
                            - fufillment_in_progress
                            - payment_failed
                            - order_shipped
                            - order_complete
                            - order_cancelled
                            - partially_fufilled
                        subtotal:
                          type: number
                          description: Subtotal in cents
                        salesTax:
                          type: number
                          description: Sales tax in cents
                        shipping:
                          type: number
                          description: Shipping fee in cents
                        processingFee:
                          type: number
                          description: Processing fee in cents
                        total:
                          type: number
                          description: Order total in cents
                        currency:
                          type: string
                        lineItems:
                          type: array
                          items:
                            type: object
                            properties:
                              id:
                                type: number
                              productId:
                                type: string
                              variantId:
                                type: string
                              price:
                                type: number
                                description: Price in cents
                              quantity:
                                type: number
                              tracking:
                                anyOf:
                                  - type: string
                                  - type: 'null'
                              shippingService:
                                anyOf:
                                  - type: string
                                  - type: 'null'
                              status:
                                type: string
                                enum:
                                  - item_recieved
                                  - check_in_progress
                                  - item_complete
                                  - item_returned
                                  - item_adjusted
                                  - item_pending
                              createdAt:
                                type: string
                              updatedAt:
                                type: string
                            required:
                              - id
                              - productId
                              - variantId
                              - price
                              - quantity
                              - tracking
                              - shippingService
                              - status
                              - createdAt
                              - updatedAt
                            additionalProperties: false
                        createdAt:
                          anyOf:
                            - type: string
                            - type: 'null'
                        updatedAt:
                          anyOf:
                            - type: string
                            - type: 'null'
                        completeAt:
                          anyOf:
                            - type: string
                            - type: 'null'
                      required:
                        - id
                        - status
                        - subtotal
                        - salesTax
                        - shipping
                        - processingFee
                        - total
                        - currency
                        - lineItems
                        - createdAt
                        - updatedAt
                        - completeAt
                      additionalProperties: false
                required:
                  - data
                additionalProperties: false
components:
  securitySchemes:
    apiKey:
      type: apiKey
      name: x-api-key
      in: header
      description: API key for authentication

````