Skip to main content
GET
/
quote-requests
/
{id}
/
quotes
Poll Quotes
curl --request GET \
  --url https://api.convallax.com/quote-requests/{id}/quotes
{
  "success": true,
  "bestQuote": {
    "maker_id": "mm-alpha",
    "quote_id": "8f3c2b1a-1d2e-4c3b-9a8f-6e5d4c3b2a1f",
    "maker": "0x1234000000000000000000000000000000abcd",
    "side": "buy",
    "price": 0.12,
    "size": 10,
    "expires_in_ms": 5000
  },
  "quoteCount": 3,
  "status": "open",
  "closed": false
}
Poll for the current best quote submitted by market makers on an open quote request.
The preferred transport for live pricing is the SSE stream GET /quote-requests/{id}/stream, which pushes an update only when the best quote changes. This poll endpoint still exists as a fallback for clients that cannot use Server-Sent Events.

Path Parameters

id
string
required

The requestId returned by Create Quote Request.

Example:

"req-789"

Response

Current best quote

success
boolean
bestQuote
object

Current best quote, or null if none received.

quoteCount
integer
Example:

3

status
enum<string>
Available options:
open,
accepted,
confirmed,
closed
Example:

"open"

closed
boolean
Example:

false