Skip to main content

List vendors

GET 

/vendors

Returns a paginated list of your vendor accounts. Each entry includes the vendor name, status, total purchase order count, and the date of their most recent PO. Use this for a high-level view of your supplier base. Retrieve a specific vendor for full contact, address, and payment term details.

Request

Response

Paginated list of vendors

Response
{
"data": [
{
"id": "3054",
"name": "Pacific Ingredients Co.",
"status": "active",
"purchaseOrderCount": 23,
"lastPurchaseOrderDate": "2025-09-15"
}
],
"pagination": {
"offset": 0,
"limit": 20,
"total": 87
}
}