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
            }
        }
    ]
}
Path Params
string
required

A comma delimited list of Ids for the SKUs being queried.

Headers
string
enum
Defaults to application/json

Generated from available response content types

Allowed:
Responses

400

No Ids were specified.

404

No SKU buylist prices were found associated with the specified Ids or all Ids
were invalid.

Language
Response
Click Try It! to start a request and see the response here! Or choose an example:
application/json
text/json