> ## 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 vault outbound shipments

> List outbound vault shipments for the authenticated organization's FBO account. Pass `includeLineItems=true` to include `items` on each shipment.

**Requires:** vault enabled on the organization.

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



## OpenAPI

````yaml /api-reference/openapi.json get /vault/get-outbound-shipments/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, settings, and product watchlist management
  - name: Inventory
    description: >-
      Inventory management — view items and aggregate statistics for your
      organization
  - name: Vault
    description: >-
      Vault shipping — intake shipments, holdings, fulfillment, outbound
      requests, inventory, and inbound/outbound shipments
  - 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: Execution
    description: Execution meta — trading status and shared execution resources
  - name: Sandbox
    description: >-
      Sandbox-only endpoints for discovering test data — not available in
      production
paths:
  /vault/get-outbound-shipments/v1:
    get:
      tags:
        - Vault
      summary: List vault outbound shipments
      description: >-
        List outbound vault shipments for the authenticated organization's FBO
        account. Pass `includeLineItems=true` to include `items` on each
        shipment.


        **Requires:** vault enabled on the organization.


        **Rate limit:** 120 requests burst, 60 requests/minute sustained.
      parameters:
        - schema:
            default: 1
            type: integer
            minimum: 1
            maximum: 9007199254740991
          in: query
          name: page
          required: false
          description: Page number (default 1)
        - schema:
            default: 20
            type: integer
            minimum: 1
            maximum: 100
          in: query
          name: limit
          required: false
          description: Maximum number of records to return (default 20, max 100)
        - schema:
            type: string
            minLength: 1
          in: query
          name: status
          required: false
          description: Filter by vault status
        - schema:
            type: boolean
          in: query
          name: includeLineItems
          required: true
          description: When true, include nested line items
      responses:
        '200':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                        fboAccountId:
                          type: string
                        status:
                          type: string
                        shippedAt:
                          anyOf:
                            - type: number
                            - type: 'null'
                        deliveredAt:
                          anyOf:
                            - type: number
                            - type: 'null'
                        createdAt:
                          type: string
                        items:
                          type: array
                          items:
                            type: object
                            properties:
                              id:
                                type: string
                              createdAt:
                                type: string
                              outboundShipmentId:
                                type: string
                              inventoryItemId:
                                type: string
                              outboundRequestItemId:
                                anyOf:
                                  - type: string
                                  - type: 'null'
                              productId:
                                type: string
                              inboundShipmentId:
                                anyOf:
                                  - type: string
                                  - type: 'null'
                              inboundShipmentLineId:
                                anyOf:
                                  - type: string
                                  - type: 'null'
                            required:
                              - id
                              - createdAt
                              - outboundShipmentId
                              - inventoryItemId
                              - productId
                            additionalProperties: false
                      required:
                        - id
                        - fboAccountId
                        - status
                        - createdAt
                      additionalProperties: false
                  pagination:
                    type: object
                    properties:
                      page:
                        type: number
                      hasMore:
                        type: boolean
                    required:
                      - page
                      - hasMore
                    additionalProperties: false
                required:
                  - data
                  - pagination
                additionalProperties: false
components:
  securitySchemes:
    apiKey:
      type: apiKey
      name: x-api-key
      in: header
      description: API key for authentication

````