> For the complete documentation index, see [llms.txt](https://docs.digitalriver.com/commerce-api/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.digitalriver.com/commerce-api/shopper-apis/shoppers/managing-a-shoppers-account.md).

# Managing a shopper's account

Managing a shopper's account involves accessing and updating account details to facilitate a seamless shopping experience. This guide will provide step-by-step instructions on retrieving account information, updating personal details, and managing payment and shipping information using the Commerce API. By following these instructions, you can ensure your shoppers have up-to-date information, streamlining their purchasing process and enhancing overall satisfaction.

## Getting the shopper's account information

To get the shopper's account information, send a `GET` request to `/v1/shoppers/me/account` and include the authenticated shopper token. Here is a sample cURL request:

{% tabs %}
{% tab title="cURL" %}

```http
curl --location --request GET 'https://api.digitalriver.com/v1/shoppers/me/account' \
--header 'authorization: bearer {Authenticated_Shopper_Token}'
```

{% endtab %}
{% endtabs %}

You will receive a `200 OK` response. The response includes redirecting a web page to update the billing, shipping, and payment details.
