---
title: "Create batch quotes for all available products"
method: POST
path: "/quotes/batch"
tags: ["Quotes"]
---

# Create batch quotes for all available products

`POST /quotes/batch`

Batch quotes created successfully

## Request body

- union
  - object
    - `stops` object[], required — Stops in route order. First is origin and last is destination.
      - `location` union, required
        - string, uuid — Location UUID from a previously created location
        - number[] — Coordinates as [longitude, latitude] in decimal degrees
        - string — Free-form address string (street address, business name, or place)
      - `instructions` string, nullable — Operational instructions for this stop.
    - `origin` union
      - string, uuid — Location UUID from a previously created location
      - number[] — Coordinates as [longitude, latitude] in decimal degrees
      - string — Free-form address string (street address, business name, or place)
    - `destination` union
      - string, uuid — Location UUID from a previously created location
      - number[] — Coordinates as [longitude, latitude] in decimal degrees
      - string — Free-form address string (street address, business name, or place)
    - `items` object[] — Optional items for product recommendation.
      - `dimensions` number[] — Width, height, length in inches
      - `weight` number — Weight in pounds
  - object
    - `stops` object[] — Stops in route order. First is origin and last is destination.
      - `location` union, required
        - string, uuid — Location UUID from a previously created location
        - number[] — Coordinates as [longitude, latitude] in decimal degrees
        - string — Free-form address string (street address, business name, or place)
      - `instructions` string, nullable — Operational instructions for this stop.
    - `origin` union, required
      - string, uuid — Location UUID from a previously created location
      - number[] — Coordinates as [longitude, latitude] in decimal degrees
      - string — Free-form address string (street address, business name, or place)
    - `destination` union, required
      - string, uuid — Location UUID from a previously created location
      - number[] — Coordinates as [longitude, latitude] in decimal degrees
      - string — Free-form address string (street address, business name, or place)
    - `items` object[] — Optional items for product recommendation.
      - `dimensions` number[] — Width, height, length in inches
      - `weight` number — Weight in pounds

## Response `201`

Created

## Other responses

- `400` — Bad Request
- `401` — Unauthorized
- `403` — Forbidden
- `422` — Unprocessable Content

---

[API](https://skmtc.net/lugg/apis/lugg-partner-api.md) · [All operations](https://skmtc.net/lugg/apis/lugg-partner-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/lugg/lugg-partner-api/revisions/cdae4166b346/schema)
