/quotesList quotes
Returns quotes for your company, most recent first, with keyset cursor pagination. `items_count` is the number of items on each quote - read a single quote for the items themselves.
Query parameters
statuscountryrecipient_emailcreated_aftercreated_beforesortlimitcursorExample 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": 2,
"po_number": "PO-9981"
}
],
"meta": { "has_more": false, "next_cursor": null, "total": 1 }
}