curl --request GET \
--url https://api.collectpure.com/execution/buy/quote/v1 \
--header 'x-api-key: <api-key>'{
"success": true,
"data": {
"quoteId": "<string>",
"currency": "<string>",
"expiresAt": "<string>",
"refreshedAt": "<string>",
"lineItems": [
{
"id": "<string>",
"quantity": 123,
"price": 123,
"status": "<string>",
"disabled": true,
"error": "<string>",
"product": {
"sku": "<string>",
"title": "<string>"
},
"variant": {
"title": "<string>"
}
}
],
"fees": [
{
"id": "<string>",
"label": "<string>",
"amount": 123,
"rate": 123
}
],
"salesTax": 123,
"subtotal": 123,
"total": 123,
"availableCount": 123,
"unavailableCount": 123
}
}Retrieve the current state and pricing of an existing buy quote. Returns a fresh pricing snapshot.
Rate limit: 120 requests burst, 60 requests/minute sustained.
curl --request GET \
--url https://api.collectpure.com/execution/buy/quote/v1 \
--header 'x-api-key: <api-key>'{
"success": true,
"data": {
"quoteId": "<string>",
"currency": "<string>",
"expiresAt": "<string>",
"refreshedAt": "<string>",
"lineItems": [
{
"id": "<string>",
"quantity": 123,
"price": 123,
"status": "<string>",
"disabled": true,
"error": "<string>",
"product": {
"sku": "<string>",
"title": "<string>"
},
"variant": {
"title": "<string>"
}
}
],
"fees": [
{
"id": "<string>",
"label": "<string>",
"amount": 123,
"rate": 123
}
],
"salesTax": 123,
"subtotal": 123,
"total": 123,
"availableCount": 123,
"unavailableCount": 123
}
}Was this page helpful?