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

# List V1 automation shipping services

> Zapier-safe public discovery metadata for currently supported automation choices. Base amounts and eligibility are schedule guidance only: the exact quote may be higher or the service may be unavailable. Quote the complete order to determine its final available service and charge. One-day service values remain accepted by order endpoints but are intentionally not published until generally supported.



## OpenAPI

````yaml https://api.batchrelay.com/openapi.json get /v1/catalog/shipping-services
openapi: 3.1.0
info:
  description: >-
    Provider-neutral print catalog and prepared-media validation. This document
    covers only routes owned by the Go service; it deliberately excludes
    migration-proxied order lifecycle routes and all provider payloads.
  license:
    name: Proprietary
    url: https://github.com/SENTINELITE/Batch-Relay-Go/blob/main/README.md
  title: Batch Relay API
  version: 1.0.1
servers:
  - url: https://api.batchrelay.com
security: []
tags:
  - description: Service health and the public API description.
    name: System
  - description: Test Mode session creation and API credential entry points.
    name: Authentication
  - description: >-
      Provider-neutral canonical catalog resources and platform-owned semantic
      definitions.
    name: Catalog
  - description: Studio-scoped guest checkout-link management.
    name: Checkout links
  - description: >-
      One-way operational event messages. Alert emails contain no message body
      and recipients read messages after Batch Relay authentication.
    name: Studio messages
  - description: >-
      Explicit, reviewable sandbox-to-Live promotion plans for forms, catalog,
      and storefront configuration.
    name: Sandbox promotions
  - description: Provider-neutral validation, quoting, and order lifecycle operations.
    name: Print orders
  - description: Managed fulfillment asset ingestion and metadata.
    name: Managed assets
  - description: Studio-scoped original asset upload sessions and objects.
    name: Studio assets
  - description: Prepared and confirmed event roster team changes.
    name: Event team changes
  - description: Authenticated studio, event, and form-management operations.
    name: Studio management
  - description: >-
      Authenticated studio retail catalog management. Draft and publication
      lifecycles are explicit per product or package.
    name: Studio catalog
  - description: >-
      Authenticated singular storefront assortment management. PATCH atomically
      publishes a new immutable assortment revision; no storefront draft
      lifecycle exists yet.
    name: Storefront
  - description: Managed media used by the studio retail catalog.
    name: Studio catalog assets
  - description: Template rendering job creation and retrieval.
    name: Template renders
  - description: >-
      Published browser-side template packages and short-lived server proof
      renders. Preview artifacts are never fulfillment artwork.
    name: Browser previews
  - description: API account and credential administration.
    name: API accounts
paths:
  /v1/catalog/shipping-services:
    parameters:
      - $ref: '#/components/parameters/ClientSurface'
      - $ref: '#/components/parameters/ClientVersion'
      - $ref: '#/components/parameters/InvocationMode'
    get:
      tags:
        - Catalog
      summary: List V1 automation shipping services
      description: >-
        Zapier-safe public discovery metadata for currently supported automation
        choices. Base amounts and eligibility are schedule guidance only: the
        exact quote may be higher or the service may be unavailable. Quote the
        complete order to determine its final available service and charge.
        One-day service values remain accepted by order endpoints but are
        intentionally not published until generally supported.
      operationId: listShippingServices
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ShippingServiceCatalog'
          description: Versioned V1 shipping-service schedule
      security: []
components:
  parameters:
    ClientSurface:
      description: >-
        Untrusted optional analytics hint naming the calling client surface. It
        never affects authorization, routing, pricing, or behavior.
      in: header
      name: X-BatchRelay-Client-Surface
      required: false
      schema:
        maxLength: 100
        minLength: 1
        type: string
    ClientVersion:
      description: >-
        Untrusted optional analytics hint naming the calling client version. It
        never affects authorization, routing, pricing, or behavior.
      in: header
      name: X-BatchRelay-Client-Version
      required: false
      schema:
        maxLength: 100
        minLength: 1
        type: string
    InvocationMode:
      description: >-
        Untrusted optional analytics hint naming the invocation mode. It never
        affects authorization, routing, pricing, or behavior.
      in: header
      name: X-BatchRelay-Invocation-Mode
      required: false
      schema:
        maxLength: 100
        minLength: 1
        type: string
  schemas:
    ShippingServiceCatalog:
      additionalProperties: false
      description: >-
        Versioned V1 automation discovery metadata. The exact quote may be
        higher or the service may be unavailable.
      properties:
        shipping_catalog_revision:
          description: >-
            Stable Batch Relay revision of the published service labels, base
            amounts, and constraints.
          minLength: 1
          type: string
        shipping_services:
          items:
            $ref: '#/components/schemas/ShippingServiceCatalogEntry'
          minItems: 1
          type: array
      required:
        - shipping_catalog_revision
        - shipping_services
      type: object
    ShippingServiceCatalogEntry:
      additionalProperties: false
      properties:
        base_amount_cents:
          description: >-
            Reviewed schedule base in minor currency units, not a final shipping
            quote.
          minimum: 0
          type: integer
        base_amount_label:
          description: >-
            Ready-to-display schedule-base copy for an automation form. It is
            not a final shipping quote.
          minLength: 1
          type: string
        currency:
          const: USD
          type: string
        delivery_estimate:
          minLength: 1
          type: string
        eligibility:
          description: >-
            Concise schedule constraints. The exact quote may be higher or the
            service may be unavailable.
          items:
            minLength: 1
            type: string
          type: array
        label:
          minLength: 1
          type: string
        service:
          $ref: '#/components/schemas/ShippingService'
        tracking:
          enum:
            - tracked
            - untracked
          type: string
      required:
        - service
        - label
        - tracking
        - delivery_estimate
        - base_amount_cents
        - base_amount_label
        - currency
        - eligibility
      type: object
    ShippingService:
      description: >-
        Required domestic US delivery service. The server freezes the exact
        deterministic provider shipping quote before payment; a service can be
        unavailable when provider eligibility, a one-day zone result, or
        required provider cost evidence is unavailable.
      enum:
        - economy_untracked
        - economy
        - expedited
        - standard_one_day
        - priority_one_day
      type: string

````