> ## Documentation Index
> Fetch the complete documentation index at: https://dev.smile.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Preloaded customer points products

> `Smile.customerPointsProducts.preloaded()`

This method retrieves a list of preloaded customer points products from the cache, without making an API call. Refer to [preloading resources](/js/concepts/preloading) to learn how to refresh the value.

<Tip>
  For this method to return a value, customer points products must first be [preloaded](/js/concepts/preloading) . If you want to retrieve live values from the API, use the [`Smile.customerPointsProducts.get()`](/js/resources/customer-points-products/get) method instead.
</Tip>

## Returns

This method returns an array of [customer points product objects](/js/resources/customer-points-products/object). If customer points products have not been preloaded, `null` is returned.

<Panel>
  ```javascript JavaScript lines theme={null}
  Smile.customerPointsProducts.preloaded();
  ```
</Panel>
