Get the cart details from the order id in woocommerce?

Try this:

<?php
    global $woocommerce;
    $items = $woocommerce->cart->get_cart();
?>