Örnek kodu yazıyorum siz istediginiz yönde geliştirebilirsiniz API GEREKMEZ

Alıntı
<?php
error_reporting(-1);
$sayi = 6; // KAÇ ADET TT ÇEKMEK İSTİYORSANIZ...
$ttname="BURAYA TWİTTER ISMINIZ";

$a=file_get_contents('https://www.twitter.com/'.$ttname);
For($i=1; $i<=$sayi; $i++)
{
$twitter=explode('<div class="ProfileTweet-contents">',$a);
$tweet=explode('</p>',$twitter[$i]);
$twitter2=explode('<span class="js-display-url">',$a);
$tweet2=explode('<',$twitter2[$i]);
?>
<div class="panel">
<!--<div class="image"><img src="images/tw.png" title=""></div>-->
<div class="title"><a target="_blank" href="http://<?echo $tweet2[0];?>"><?echo strip_tags(mb_substr($tweet[0],0,300,'UTF-8'));?></a></div>
</div>
<?}?>