Quote Service
Update Quote Request
Update the legs or bet amount on an active quote request.
PATCH
Update an active quote request with new legs or a different bet amount. This increments the
version and recomputes the request_hash, which automatically invalidates all existing market maker quotes. MMs receive the updated request and can submit fresh prices.
You can only update a quote request while its status is active.
Authentication
Bearer token required. Pass your JWT in theAuthorization header.
Path Parameters
The quote request ID (UUID).
Request Body
Same fields as Create Quote Request.Array of 2-5 parlay legs.
USDC bet amount (1-100).
Response
Errors
| Status | Code | Description |
|---|---|---|
| 400 | VALIDATION_ERROR | Invalid body or market validation failed. |
| 401 | UNAUTHORIZED | Missing or invalid JWT. |
| 403 | FORBIDDEN | You do not own this quote request. |
| 404 | NOT_FOUND | Quote request not found. |
| 409 | CONFLICT | Quote request is already committed, cancelled, or expired. |
