Hey, I'm trying to do the same, My thread: viewtopic.php?f=45&t=784299 If it helps, Heres my code so far (I'm also having problems, with grabbing the price, and displaying it): <?php $ch = curl_init(); $id = "9004"; curl_setopt($ch, CURLOPT_URL, "http://itemdb-rs.runescape.com/viewitem.ws?obj=".$id); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); $output = curl_exec($ch); curl_close($ch); $string = $output; if(preg_match("/price+(?=:)/", $string, $match)) { print_r($match); echo $match[0]; }else{ echo 'No match found'; } ?>