I can get posts in all categories. But I want to get the custom post type I created

Has your custom post type created with the categories? if yes just add ‘post_type’=> ‘your-custom-post-type’ in the args. So for you it will be as below:

$args=array(
    'post_type'=> 'Ürünler'
    'showposts' => -1,
    'category__in' => array($category->term_id),
    'caller_get_posts'=>1
);