get_posts() is a wrapper for a separate instance of a WP_Query object. The returned value is an array of post object.
global $post;
$args = array(
'numberposts' => 5,
'offset'=> 1,
'category' => 1
);
$myposts = get_posts( $args );
foreach( $myposts as $post ) :
...