<!--
{
  "availability" : [

  ],
  "documentType" : "symbol",
  "framework" : "AppleMusicAPI",
  "identifier" : "/documentation/AppleMusicAPI/Get-a-User's-Storefront",
  "metadataVersion" : "0.1.0",
  "role" : "Web Service Endpoint",
  "symbol" : {
    "kind" : "Web Service Endpoint",
    "modules" : [
      "Apple Music API"
    ],
    "preciseIdentifier" : "rest:music_api:get:v1-me-storefront#all"
  },
  "title" : "Get a User's Storefront"
}
-->

# Get a User's Storefront

Fetch a storefront for a specific user.

## Discussion

If successful, the HTTP status code is 200 (OK) and the `data` array contains a single [`Storefronts`](/documentation/AppleMusicAPI/Storefronts) object. If unsuccessful, the HTTP status code indicates the error and the details are in the `errors` array.

This endpoint requires a music user token. For more information, see [User Authentication for MusicKit](/documentation/AppleMusicAPI/user-authentication-for-musickit).

### Example

**Request:**

```
https://api.music.apple.com/v1/me/storefront
```

**Response:**

```json
{
    "data": [
        {
            "id": "us",
            "type": "storefronts",
            "href": "/v1/storefronts/us",
            "attributes": {
                "supportedLanguageTags": [
                    "en-US",
                    "es-MX",
                    "ar",
                    "ru",
                    "zh-Hans-CN"
                ],
                "defaultLanguageTag": "en-US",
                "name": "United States",
                "explicitContentPolicy": "allowed"
            }
        }
    ]
}
```

## See Also

[`object Storefronts`](/documentation/AppleMusicAPI/Storefronts)

A resource object that represents a storefront, an Apple Music and iTunes Store territory that the content is available in.

[`object StorefrontsResponse`](/documentation/AppleMusicAPI/StorefrontsResponse)

The response to a storefront request.



---

Copyright &copy; 2026 Apple Inc. All rights reserved. | [Terms of Use](https://www.apple.com/legal/internet-services/terms/site.html) | [Privacy Policy](https://www.apple.com/privacy/privacy-policy)