Get tags name under custom taxonomy in wordpress

You can use the following code to get all tags in a taxonomy.

<?php

$tags = get_terms(
    array(
        'taxonomy' => 'your_taxonomy',
    )
);

foreach( $tags as $tag ) {
    echo $tag->name;
}