---
title: "List quotes"
method: GET
path: "/quotes"
tags: ["Quotes"]
---

# List quotes

`GET /quotes`

**Plan: Paid API.**

## Query parameters

- `page` integer
- `per_page` integer

## Response `200`

OK

- object
  - `stats` QuoteListStats — Pagination block for `GET /quotes` only. Note the current page is `currentPage` (not `page`), and there are three extra keys not present on other index endpoints.
    - `totalCount` integer
    - `currentPage` integer
    - `perPage` integer
    - `totalPages` integer
    - `prevPage` integer, nullable
    - `nextPage` integer, nullable
    - `nextPageResultsCount` integer, nullable
    - `hasNextPage` boolean
    - `hasPrevPage` boolean
    - `outOfRange` boolean
  - `quotes` QuoteListItem[]
    - `id` string, uuid
    - `title` string
    - `txnNumber` string
    - `txnDate` string, date, nullable
    - `expiryDate` string, date, nullable
    - `shippingDate` string, date, nullable
    - `createdAt` string, date-time
    - `updatedAt` string, date-time
    - `workflowState` string, nullable
    - `totalPriceWithTaxInDollars` number, nullable — US dollars.
    - `nextContactDate` string, date, nullable
    - `closingPotential` string, nullable
    - `potentialClosingDate` string, date, nullable
    - `lastNote` string, nullable
    - `age` integer, nullable
    - `lastEmailedDate` string, nullable
    - `quoteFor` string, nullable
    - `customerNote` string, nullable
    - `site` string, nullable
    - `quickQuote` boolean, nullable
    - `dueDate` string, date, nullable
    - `inHandDate` string, date, nullable
    - `createdBy` NamedRef — Lightweight reference to a related record.
      - `id` string, uuid
      - `name` string
    - `projectManager` NamedRef — Lightweight reference to a related record.
      - `id` string, uuid
      - `name` string
    - `designer` Party — A person reference (sales rep, PM, designer) with initials.
      - `id` string, uuid
      - `name` string, nullable
      - `initials` string, nullable
    - `primaryContact` NamedRef — Lightweight reference to a related record.
      - `id` string, uuid
      - `name` string
    - `primarySalesRep` NamedRef — Lightweight reference to a related record.
      - `id` string, uuid
      - `name` string
    - `company` NamedRef — Lightweight reference to a related record.
      - `id` string, uuid
      - `name` string
    - `project` NamedRef — Lightweight reference to a related record.
      - `id` string, uuid
      - `name` string

## Other responses

- `401` — Missing/expired credentials, an index request without a required filter, or the plan does not include this endpoint.

---

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