QuipteamsREST API

List quotes

Quotes: Manage hardware procurement quotes. Quotes contain items, recipients, and alternatives.

Endpoint7 params

Parameters

NameTypeDescription
statusstring
Filter by quote status.
countrystring
Filter by country (partial match)
created_afterISO 8601
Only return quotes created after this date
created_beforeISO 8601
Only return quotes created before this date
sortstring
Sort field. Prefix with - for descending (default: "-created_at").
limitinteger
Items per page, 1-100 (default: 25)
cursorstring
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
  }
}