How to retrieve the permalink for a specific (custom) term?

You are looking for function get_term_link.
Example

$my_term_link = get_term_link($cat_lists); 

Here $cat_lists is term object.

Official Documentation