How to display “META” array in register_taxonomy

You could get array from json like below:

$request = wp_remote_get( 'https://parquedasfeiras.online/wp-json/wp/v2/job_listing' );
if( is_wp_error( $request ) ) {
    return false; // Bail early
}
$body = wp_remote_retrieve_body( $request );
$data = json_decode( $body );
if( ! empty( $data ) ) {

    foreach($data  as $subdata){
        print_r($subdata->meta);
    }

}