se vuoi solo la prima chiave prenditi l'array_keys di events e chiedi la sola chiave [0], oppure fai array_shift (che è distruttivo però) oppure http://it2.php.net/currentCodice PHP:
foreach($cell_data["events"] as $key => $value)
{
echo "chiave $key e post_id = ".$value->post_id."\n";
}