Sub TorrentData()
Dim http As New XMLHTTP60, html As New HTMLDocument
Dim elems As Object
With http
.Open "GET", "https://www.yify-torrent.org/search/1080p/", False
.send
html.body.innerHTML = .responseText
End With
For Each elems In html.getElementById("content").getElementsByTagName("img")
x = x + 1: Cells(x, 1) = elems.src
Next elems
End Sub