List Product SKUs

Return all of the SKUs the store currently has listed for a specific product.

{
    "totalItems": integer,
    "success": boolean,
    "errors": [],
    "results": [
        {
            "skuId": integer,
            "condition": {
                "conditionId": integer,
                "name": "string"
            },
            "language": {
                "languageId": integer,
                "name": "string",
                "abbr": "string"
            },
            "foil": boolean,
            "price": decimal,
            "quantity": integer,
            "isFeatured": boolean,
            "isCustom": boolean
        }
    ]
}
{
    "totalItems": 1,
    "success": true,
    "errors": [],
    "results": [
        {
            "skuId": 15179,
            "condition": {
                "conditionId": 1,
                "name": "Near Mint"
            },
            "language": {
                "languageId": 1,
                "name": "English",
                "abbr": null
            },
            "foil": false,
            "price": 6499,
            "quantity": 2,
            "isFeatured": true,
            "isCustom": false
        }
    ]
}
Language
Click Try It! to start a request and see the response here!