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

# List quotes

`GET /V1/quotes`

Returns quotes mirroring the quote PDF. Supports filtering by customer, status, and incremental polling via updated_since.

## Query parameters

- `customer_plunet_id` integer
- `status` string
- `updated_since` string, date-time
- `page` integer
- `per_page` integer

## Response `200`

matching quotes

- object
  - `data` Quote[]
    - `id` string — Quote order_reference
    - `plunet_id` string, nullable — Plunet quote id
    - `order_reference` string, nullable — Same as id; canonical reference like "Q-1446-01"
    - `created_at` string, date-time
    - `valid_until` string, date, nullable — Quote validity end date (created_at + 1 month).
    - `status` string, nullable
    - `project_name` string, nullable
    - `client_ccy` string, nullable
    - `price_in_client_ccy` number, float, nullable
    - `customer` QuoteCustomer, nullable
      - `plunet_id` integer, nullable
      - `name` string
      - `address` string, nullable
    - `contact_person` object, nullable
      - `full_name` string
      - `email` string, email
    - `project_manager` object, nullable
      - `full_name` string
    - `items` QuoteItem[]
      - `id` string, nullable — Plunet item id
      - `plunet_id` string, nullable — Same as id
      - `language_source` string, nullable
      - `language_target` string, nullable
      - `client_price` number, float, nullable — Item price in the customer-facing currency.
      - `status` string, nullable
      - `price_line` PriceLineEntry[]
        - `price_unit_id` integer, nullable
        - `service` string, nullable
        - `unit` string, nullable
        - `amount` number, float
        - `unit_price` number, float
        - `total` number, float
  - `meta` PaginationMeta
    - `total` integer
    - `page` integer
    - `per_page` integer

## Other responses

- `401` — unauthenticated

---

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