You can easily get the coordinates in stage coordinates (which are basically the screen coordinates) — or, in fact, the coordinates within any coordinate system you want:
// get bounds of object "_quad" on the stage:
SPRectangle *stageBounds = [_quad boundsInSpace:self.stage];
NSLog(@"stagebounds: %@", stageBounds);