Will like to make an addition to @ladiesMan217 , we can create application specific passwords if we have 2 steps verification on.
As far as GAPI is concerned i have created a class which will give lot of information but by using couple of methods. You can download the class here http://www.thetutlage.com/post=TUT217
<?php
error_reporting(0); // it is important as filtering tend to leave some unwanted errors
include_once( 'class.analytics.php' );
define('ga_email','your_analytics_email');
define('ga_password','your_analytics_password');
define('ga_profile_id','your_analytics_profile_id');
// Start date and end date is optional
// if not given it will get data for the current month
$start_date = '2012-05-28';
$end_date = '2012-06-27';
$init = new fetchAnalytics(ga_email,ga_password,ga_profile_id,$start_date,$end_date);
$trafficCount = $init->trafficCount();
$referralTraffic = $init->referralCount();
$trafficCountNum = $init->sourceCountNum();
$trafficCountPer = $init->sourceCountPer();
?>
First Method trafficCount will give you ( PageViews , Visits, Bounce Rate, Time spend of site, New Visits )
Second Method referralCount will give you ( referral url and total number of hits from that url )
Third Method sourceCountNum will provide you traffic source like ( Direct Traffic, Organic ,Referral, Feed, Emails and Others )
Last Method sourceCountPer will provide same info as the 3rd one with one difference here the information will be in Percentage.
Hope it will be of some help and please let me know in case of any bugs.