> ## 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.

# Get reward fulfillments

> `Smile.rewardFulfillments.get()`

This async method retrieves a list of all the reward fulfillments belonging to the currently logged-in customer. This method always makes an API call to fetch the latest data.

<Tip>
  For the best performance, we suggest [preloading](/js/concepts/preloading) reward fulfillments and then using the [`Smile.rewardFulfillments.preloaded()`](/js/resources/reward-fulfillments/preloaded) method.
</Tip>

## Returns

This method returns a `Promise` that:

* On success, resolves with an array of [reward fulfillment objects](/js/resources/reward-fulfillments/object).
* On failure, rejects with an [error object](/js/concepts/error-handling).

If the method is improperly invoked (e.g. no customer currently logged in), the `Promise` will be rejected.

<Panel>
  ```javascript JavaScript lines theme={null}
  Smile.rewardFulfillments.get().then(
    (rewardFulfillments) => {
      // Handle the reward fulfillments collection
    }
  );
  ```
</Panel>
