Get item pricing history
GET/items/:itemId/pricing-history
Returns the historical unit prices paid for this item, sourced from purchase order line items. Each entry shows the PO number, vendor, date, quantity, unit price, and total. Use this to track cost trends over time, compare pricing between vendors, or build cost-forecasting models. Filter by date range or vendor to narrow the results.
Request
Response
- 200
- 401
- 404
Pricing history
Unauthorized — missing or invalid API key
Resource not found
Response
{
"data": [
{
"purchaseOrderNumber": "PO-2025-0471",
"vendorId": null,
"vendorName": "Pacific Ingredients Co.",
"date": "2025-03-15",
"quantity": 200,
"unit": "lbs",
"unitPrice": 3.25,
"totalPrice": 650
}
],
"pagination": {
"offset": 0,
"limit": 20,
"total": 87
}
}