List Shipping Options

Return a list of all of the store's available shipping options for a specific product.

{
    "totalItems": integer,
    "success": boolean,
    "errors": [],
    "results": [
        {
            "description": "string",
            "displayText": "string",
            "price": integer
        }
    ]
}
{
    "totalItems": 1,
    "success": true,
    "errors": [],
    "results": [
        {
            "description": "Standard",
            "displayText": "Standard - 6 to 8 business days",
            "price": 1
        }
    ]
}
Language
Click Try It! to start a request and see the response here!