List SKU Buylist Prices

Returns all SKU buylist prices for the Ids specified. Buylist prices that could
be found are returned in the results array in the response. Buylist prices that
could not be found are indicated in the errors array.

Returns Buylist pricing for specific conditions. If data isn't found for a specific type of Buylist price there will be null fields.

{
  "success": true,
  "errors": [
    "string"
  ],
  "results": [
    {
      "skuId": 0,
      "prices": {}
    }
  ]
}
/pricing/buy/sku/382537,382827

{
    "success": true,
    "errors": [],
    "results": [
        {
            "skuId": 382537,
            "prices": {
                "high": 70.31,
                "market": 69.26
            }
        },
        {
            "skuId": 382827,
            "prices": {
                "high": 350.01,
                "market": 325.97
            }
        }
    ]
}
Language
Click Try It! to start a request and see the response here!