How to get custom post type taxonomy

Here is how i did it

$taxonomy = get_terms('portfolio_category', array( 'hide_empty' => 0 ));

i am able get all the items under portfolio_category.

tech