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

# List Shipping Options

> List eligible shipping rates for the given address + subtotal.

Always returns at least one option (the merchant's default zone is
seeded by migration 018). Returns [] only if the merchant has
actively deleted their default and configured no other zones —
which the dashboard config UI in 4-C will prevent.



## OpenAPI

````yaml /api-reference/openapi.json get /api/storefront/shipping-options
openapi: 3.1.0
info:
  title: Agentic Commerce API
  description: |2-

        Agentic Commerce API - E-commerce Backend

        ## APIs

        ### Dashboard API (`/api/dashboard`)
        Authenticated endpoints for merchant management:
        - Products, Variants, Options
        - Inventory management
        - Orders and fulfillment
        - Customers
        - Collections

        ### Storefront API (`/api/storefront`)
        Public endpoints for client websites:
        - Product catalog
        - Collections
        - Cart management
        - Checkout

        ### Sync API (`/api/sync`)
        Integration endpoints for zunkiree-search:
        - Product sync
        - Availability checks
        - Order creation from AI widget
        
  version: 1.0.0
servers: []
security: []
paths:
  /api/storefront/shipping-options:
    get:
      tags:
        - Storefront
        - Storefront Shipping
      summary: List Shipping Options
      description: |-
        List eligible shipping rates for the given address + subtotal.

        Always returns at least one option (the merchant's default zone is
        seeded by migration 018). Returns [] only if the merchant has
        actively deleted their default and configured no other zones —
        which the dashboard config UI in 4-C will prevent.
      operationId: list_shipping_options_api_storefront_shipping_options_get
      parameters:
        - name: country
          in: query
          required: true
          schema:
            type: string
            minLength: 2
            maxLength: 2
            description: ISO 3166-1 alpha-2
            title: Country
          description: ISO 3166-1 alpha-2
        - name: province_code
          in: query
          required: false
          schema:
            anyOf:
              - type: string
                maxLength: 10
              - type: 'null'
            title: Province Code
        - name: subtotal
          in: query
          required: true
          schema:
            anyOf:
              - type: number
                minimum: 0
              - type: string
                pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
            title: Subtotal
        - name: authorization
          in: header
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Authorization
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ShippingOptionsResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    ShippingOptionsResponse:
      properties:
        options:
          items:
            $ref: '#/components/schemas/ShippingOptionResponse'
          type: array
          title: Options
      type: object
      required:
        - options
      title: ShippingOptionsResponse
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ShippingOptionResponse:
      properties:
        rate_id:
          type: string
          format: uuid
          title: Rate Id
        name:
          type: string
          title: Name
        price:
          type: string
          pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
          title: Price
        currency:
          type: string
          title: Currency
      type: object
      required:
        - rate_id
        - name
        - price
        - currency
      title: ShippingOptionResponse
      description: Single eligible shipping rate for an address + subtotal.
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError

````