Woocommerce Customers API Laravel

I’ve been trying to synchronize my WooCommerce customers with Laravel using this package, aiming to ensure seamless integration of products, orders, and customer data.

composer require automattic/woocommerce

The package functions smoothly when retrieving Products or Orders.

Here is the sample code.

This code is returning an empty array from WooCommerce. The problem seems to be specific to customers, as it’s not retrieving any data; only an empty array is returned.

$since_id = 0;
$url            =   $this->store['store_url'];
$consumer_key   =   $this->store['consumer_key'];
$consumer_secret=   $this->store['consumer_secret'];
$options        =   [ 'wp_api' => true, 'version' => 'wc/v3' ];
$woocommerce    =   new Client($url, $consumer_key, $consumer_secret, $options);

$page = 1;
$per_page = 100; // Set a reasonable limit to avoid overloading
$limit = 10000;
$all_customers = [];
do {
    $args = [
        'per_page' => $per_page,
        'page' => $page,
    ];
    $customers = $woocommerce->get('customers', $args);
    $all_customers = array_merge($all_customers, $customers);
    // Check if there are more orders:
    $page++;
} while (count($customers) >= $per_page);

Here are the responses I’m receiving from WooCommerce:
enter image description here