Using the Account class, how can I get the account history and activities (the same as is shown in the subpanels in detail view).

ATM I have done the following:
$acc = new Account();
$acc->retrieve($acc_id);

Now which function/s do I use to get the history/activities?

Thanks!