make a CURL request to get the products: https://yourdomain/index.php?route=api/product. Following is the code:
<?php
$url = "yourdomain";
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => $url . "/index.php?route=api%2Fproduct",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => array(
"cache-control: no-cache",
),
));
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
Also, you can send the filter data array. For example:
$data = array(
'filter_category_id' => '63',
'sort' => 'p.date_added',
'order' => 'DESC',
'start' => 0,
'limit' => $setting
);
The response you get will be like below
{
"products":
}