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

# List all shipping options for the store

> List all shipping options for the store. Requires the READ_SHIPPING scope.

Returns every non-deleted shipping option configured for the store. For options of type `auto`, the store-level shipping configuration is merged into the returned object. Returns a bare array as `data`. Requires the `READ_SHIPPING` scope.


## OpenAPI

````yaml GET /shipping/options
openapi: 3.1.0
info:
  title: Salesive Store API
  description: >-
    REST interface for querying products, categories, and merchandising banners
    exposed by Salesive storefronts.
  version: 1.0.0
servers:
  - description: Production
    url: https://store.salesive.com/api/v1
security:
  - BearerAuth: []
    ShopIdHeader: []
paths:
  /shipping/options:
    get:
      summary: Get shipping options
      description: Retrieve available shipping options for a specific address and order.
      parameters:
        - $ref: '#/components/parameters/XShopIdHeader'
        - name: shippingAddressId
          in: query
          required: true
          description: The shipping address ID to calculate shipping options for.
          schema:
            type: string
        - name: orderId
          in: query
          required: true
          description: The order ID to calculate shipping costs for.
          schema:
            type: string
      responses:
        '200':
          description: Shipping options retrieved successfully.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ShippingOptionsResponse'
        '401':
          description: Unauthorized.
        '404':
          description: Shipping address or order not found.
components:
  parameters:
    XShopIdHeader:
      name: x-shop-id
      in: header
      description: >-
        Optional identifier that scopes responses to a specific storefront when
        the referer cannot be inferred.
      required: false
      schema:
        type: string
  schemas:
    ShippingOptionsResponse:
      type: object
      required:
        - status
        - success
        - message
        - data
      properties:
        status:
          type: integer
        success:
          type: boolean
        message:
          type: string
        data:
          type: array
          items:
            $ref: '#/components/schemas/ShippingOption'
    ShippingOption:
      type: object
      required:
        - _id
        - name
        - carrier
        - estimatedDays
        - price
      properties:
        _id:
          type: string
          description: Shipping option identifier.
        name:
          type: string
          description: Name of the shipping option.
        carrier:
          type: string
          description: Carrier name (e.g., USPS, FedEx, DHL).
        estimatedDays:
          type: string
          description: Estimated delivery time.
        price:
          type: number
          description: Shipping cost.
        formattedPrice:
          type: string
          description: Formatted price string.
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: JWT issued by the Salesive Store API for authenticated shoppers.
    ShopIdHeader:
      type: apiKey
      in: header
      name: x-shop-id
      description: >-
        Optional storefront identifier sent as a header to scope responses to a
        specific shop. Try It requests remember this value once provided.

````