---
title: "Poll Quotes"
method: GET
path: "/quote-requests/{id}/quotes"
tags: ["Trading"]
---

# Poll Quotes

`GET /quote-requests/{id}/quotes`

Poll for the current best quote on an open quote request. Prefer the SSE stream `GET /quote-requests/{id}/stream` for live pricing; this endpoint is a fallback for clients that cannot use Server-Sent Events.

## Path parameters

- `id` string, required

## Response `200`

Current best quote

- QuotesPollResponse
  - `success` true
  - `bestQuote` Quote — A market maker quote as exposed to takers.
    - `maker_id` string — Identifier of the market maker.
    - `quote_id` string — Server-generated quote ID.
    - `maker` string — Maker wallet address (becomes `Order.maker`).
    - `side` 'buy' | 'sell'
    - `price` number — Price per option in (0, 1).
    - `size` number
    - `expires_in_ms` number
  - `quoteCount` integer
  - `status` 'open' | 'accepted' | 'confirmed' | 'closed'
  - `closed` boolean

## Other responses

- `404` — Error

---

[API](https://skmtc.net/convallax/apis/convallax-rfq-api.md) · [All operations](https://skmtc.net/convallax/apis/convallax-rfq-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/convallax/convallax-rfq-api/versions/c8cb11b778c1/schema)
