List SKU List Price

This listing comes from the current Store's inventory whose Seller is associated with the user's bearer token making this API call.

Gets all of the authenticated store's current pricing information. As this request is paginated, will need to use offset to pull the entire pricing.

{
    "totalItems": integer,
    "success": boolean,
    "errors": [],
    "results": [
        {
            "skuListPriceId": integer,
            "skuId": integer,
            "price": decimal,
            "isCustom": boolean
        }
    ]
}
{
    "totalItems": 40617,
    "success": true,
    "errors": [],
    "results": [
        {
            "skuListPriceId": null,
            "skuId": 2231,
            "price": 0.07,
            "isCustom": false
        },
        {
            "skuListPriceId": null,
            "skuId": 2239,
            "price": 0.07,
            "isCustom": false
        },
        {
            "skuListPriceId": null,
            "skuId": 2247,
            "price": 8.61,
            "isCustom": false
        },
        {
            "skuListPriceId": null,
            "skuId": 2255,
            "price": 0.21,
            "isCustom": false
        },
        {
            "skuListPriceId": null,
            "skuId": 2263,
            "price": 0.44,
            "isCustom": false
        },
        {
            "skuListPriceId": null,
            "skuId": 2271,
            "price": 0.23,
            "isCustom": false
        },
        {
            "skuListPriceId": null,
            "skuId": 2279,
            "price": 0.33,
            "isCustom": false
        },
        {
            "skuListPriceId": null,
            "skuId": 2287,
            "price": 2.1,
            "isCustom": false
        },
        {
            "skuListPriceId": null,
            "skuId": 2295,
            "price": 0.27,
            "isCustom": false
        },
        {
            "skuListPriceId": null,
            "skuId": 2303,
            "price": 2.16,
            "isCustom": false
        }
    ]
}
Language
Click Try It! to start a request and see the response here!