Get prices

This endpoint is deprecated.
POST/api/RPC.common.Api.Prices.get?token=<TOKEN>

Key Prices.get · API version 2.0.0

Parameters

4 body parameters inside data[]
FieldTypeDescription
pricelist_coderequiredStringPrice list code
skuStringItem SKU
measure_codeStringUnit of measurement ID
updatedonStringUpdated after

Request example

Search Prices By Sku and Measure Code:
{
   "data" : [
      {
         "sku" : 10001,
         "pricelist_code" : 5327453,
         "measure_code" : "pcs"
      }
   ]
}
Get Prices Changed After a Moment (incremental sync):
{
   "updatedon" : "2026-08-20 10:00:00"
}

cURL

Search Prices By Sku and Measure Code:
curl -X POST -H 'Content-Type: application/json; charset=utf-8' -d '{   "data" : [      {         "sku" : 10001,         "pricelist_code" : 5327453,         "measure_code" : "pcs"      }   ]}' "https://<DOMAIN_NAME>/api/RPC.common.Api.Prices.get?token=<TOKEN>"
Get Prices Changed After a Moment (incremental sync):
curl -X POST -H 'Content-Type: application/json; charset=utf-8' -d '{   "updatedon" : "2026-08-20 10:00:00"}' "https://<DOMAIN_NAME>/api/RPC.common.Api.Prices.get?token=<TOKEN>"

Response example

    HTTP/1.1 200 OK
{
   "result" : [
      {
         "currency" : "BGN",
         "sku" : 10001,
         "measure_code" : "pcs",
         "pricelist_code" : 5327453,
         "price" : "150.00"
      }
   ],
   "total_count" : 1,
   "count" : 1
}