List quotes
Quotes: Manage hardware procurement quotes. Quotes contain items, recipients, and alternatives.
Endpoint7 params
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
status | string | no | Filter by quote status. |
country | string | no | Filter by country (partial match) |
created_after | ISO 8601 | no | Only return quotes created after this date |
created_before | ISO 8601 | no | Only return quotes created before this date |
sort | string | no | Sort field. Prefix with - for descending (default: "-created_at"). |
limit | integer | no | Items per page, 1-100 (default: 25) |
cursor | string | no | Pagination cursor from a previous response |
javascript
const response = await fetch(`https://api.quipteams.com/api/v1/quotes?limit=10`, {
method: 'GET',
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
},
});
const { data } = await response.json();
console.log(data);Response
json
{
"data": [
{
"order_id": "1741345200000",
"status": "in_progress",
"countries": [
"United States",
"Mexico"
],
"created_at": "2026-02-15T10:30:00.000Z",
"updated_at": "2026-02-18T14:22:00.000Z",
"requester": {
"email": "jane@acme.com",
"name": "Jane Smith"
},
"items_count": 3,
"po_number": "PO-9981"
}
],
"meta": {
"has_more": true,
"next_cursor": "eyJpZCI6IjEyMyIsImNyZWF0ZWRfYXQiOiIyMDI2LTAyLTE1In0",
"total": 42
}
}