Thanks Guys i solved my problem……
just replace this code :-
<script type=”text/javascript”>
$.ajax({
type: “GET”,
//url: “api/get_recent_posts/?custom_fields=gallery_thumb,gallery_zoom&slug=’brand-design'”,
url: “api/get_category_posts/?custom_fields=gallery_thumb,gallery_zoom&slug=’marketing-stratgies'”,
dataType: “json”,
success: function(data){
$.each(data.posts, function(index, value) {
$(“#thumb-images”).append(‘<img src=”‘+value.custom_fields.gallery_thumb+'”/>’);
});
}
});
</script>