Cscart Api Dosent Returns Desirable Results

I am trying to fetch data using API.Now as per the API docs given I initiated a GET request to the API and the orders i have fetched has no product name , type of payments

(The headers are fine and its connected )

GET Request

http://example.com/api/orders

result i got an array of 10 orders when i have more than 30 orders

9 => array(
'order_id' => '1003',
'issuer_id' => null,
'user_id' => '0',
'is_parent_order' => 'N',
'parent_order_id' => '0',
'company_id' => '1',
'timestamp' => '1433830181',
'firstname' => 'Miss Anshika Tibrewala',
'lastname' => 'C/O Sheetal Tibrewala',
'email' => 'info@cupsware.com',
'phone' => '',
'status' => 'P',
'total' => '325.00',
'invoice_id' => null,
'credit_memo_id' => null
)
),
'params' => array(
'page' => (int) 1,
'items_per_page' => '10',
'ajax_custom' => '1',
'include_incompleted' => false,
'sort_order' => 'desc',
'sort_by' => 'date',
'sort_order_rev' => 'asc',
'total_items' => '22'

I need to iterate through the pages how can that be achieved?

How to retrieve all the orders what point am I missing also i need the product name and payment type in the order how to get that??

Any sort of help is most welcomed.Thanks in advance.

:-) :-) :-) :-) :-) :-) :-) :-)

Try to use the following url:

http://example.com/api/orders?items_per_page=100