Get item vendors
GET/items/:itemId/vendors
Returns the list of vendors that supply this item. Each vendor entry includes the vendor's own item code and name for this material, their minimum order quantity, the most recent purchase price, and the average price across all purchases. Use this to compare sourcing options and identify your best-priced supplier for a given material.
Request
Response
- 200
- 401
- 404
Vendors supplying this item
Unauthorized — missing or invalid API key
Resource not found
Response
{
"itemId": null,
"itemName": null,
"vendors": [
{
"vendorId": "3054",
"vendorName": "Pacific Ingredients Co.",
"vendorItemCode": null,
"vendorItemName": null,
"vendorMinOrderQuantity": 100,
"lastPrice": 3.25,
"averagePrice": 3.1
}
]
}