Skip to main content
This endpoint retrieves the individual prices stored across all price lists. Each entry maps a product to its price within a specific price list, letting you read product pricing per channel without loading every list separately.
This endpoint requires authentication. Include your JWT in the x-token header. See Authentication for how to obtain a token and Errors for error responses.

Query Parameters

limit
integer
default:"50"
Maximum number of prices to return per page (1-999).
filters
array
Filter prices by specific fields. Use array notation: filters[0][0]=field_name&filters[0][1]=value. Supported fields: id, product_id, list_id.
with[]
array
Include related data in the response. Supported values: product (embeds the related product) and list (embeds the related price list).

Request Example

curl "https://integrations.clopos.com/open-api/v2/price-lists/prices?filters[0][0]=list_id&filters[0][1]=1" \
  -H "x-token: YOUR_ACCESS_TOKEN"

Response Example

{
  "data": [
    {
      "id": 10,
      "list_id": 1,
      "product_id": 105,
      "price": 12.5
    },
    {
      "id": 11,
      "list_id": 1,
      "product_id": 106,
      "price": 8.0
    }
  ],
  "pagination": {
    "page": 1,
    "per_page": 50,
    "total": 2,
    "total_pages": 1
  }
}

Field Reference

Price Object

FieldTypeDescription
idintegerUnique identifier for the price entry.
list_idintegerID of the price list this price belongs to.
product_idintegerID of the product this price applies to.
pricenumberThe product’s price within this price list.
productobject (nullable)The related product. Included only when requested via with[]=product. See Product object.
listobject (nullable)The related price list. Included only when requested via with[]=list. See Price List object.