---
title: "View purchase prices"
method: GET
path: "/api/v1/products/{id}/purchasePrices"
tags: ["Product"]
---

# View purchase prices

`GET /api/v1/products/{id}/purchasePrices`

Returns a list of given Products' PurchasePrices

## Path parameters

- `id` string, required — Resource identifier.

## Query parameters

- `page` object
  - `number` string, required — Page number should be an integer greater than or equal to 1
  - `size` string, required — Page size should usually be an integer between 10 and 50.
- `order` object[]
  - `field` 'id' | 'amount' | 'priceAmount' | 'supplier' | 'supplierName'
  - `dir` 'asc' | 'desc'

## Response `200`

Success

- object
  - `data` object[]
    - `id` string — Resource identifier.
    - `amount` integer
    - `supplier` object — An object with id and name
      - `id` string, required — Resource identifier.
      - `name` string, required
    - `price` object — Money object with amount and currency
      - `amount` string, float — A string representing the amount
      - `currency` 'EUR' | 'USD' | 'JPY' | 'BGN' | 'CZK' | 'DKK' | 'GBP' | 'HUF' | 'PLN' | 'RON' | 'SEK' | 'CHF' | 'ISK' | 'NOK' | 'HRK' | 'RUB' | 'TRY' | 'AUD' | 'BRL' | 'CAD' | 'CNY' | 'HKD' | 'IDR' | 'ILS' | 'INR' | 'KRW' | 'MXN' | 'MYR' | 'NZD' | 'PHP' | 'SGD' | 'THB' | 'ZAR' | 'ARS' | 'CLP' | 'SAR' | 'AED' | 'QAR' — Currency matches one of currency values as specified in ISO-4217.
    - `additionalInformation` object — Additional information about stock and delivery details.
      - `supplierAvailableStock` integer — The quantity of stock available from the supplier.
      - `supplierAvailableStockDate` string, nullable — The date on which the supplier's available stock was last updated.
      - `safetyStock` integer — The minimum quantity of stock maintained for safety purposes.
      - `standardDeliveryTime` integer — The standard delivery time required to receive stock.
      - `standardDeliveryTimeUnit` string — The unit of time for the standard delivery duration
      - `currentDeliveryTime` integer — The actual current delivery time for receiving stock.
      - `currentDeliveryTimeUnit` string — The unit of time for the current delivery duration
  - `extra` object — Pagination data from the current request.
    - `page` object, required — The pagination object containing the current page number and size
      - `number` integer, required
      - `size` integer, required

## Other responses

- `429` — Too many API calls made.

---

[API](https://skmtc.dev/xentral/apis/xentral-api.md) · [All operations](https://skmtc.dev/xentral/apis/xentral-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/xentral/xentral-api/revisions/8a27ba392442/schema)
