var req="//api.vk.com/method/video.get?owner_id=-109098029&album_id=1&extended=1&access_token=&v=5.40"
$.ajax({
url : req,
type : "GET",
dataType : "jsonp",
success : function(data){
console.log(data.response[1]);
}
});