<!--
{
  "availability" : [

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

# Get a Storefront

Fetch a single storefront by using its identifier.

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

### Example

**Request:**

```
https://api.music.apple.com/v1/storefronts/jp
```

**Response:**

```json
{
    "data": [
        {
            "id": "jp",
            "type": "storefronts",
            "href": "/v1/storefronts/jp",
            "attributes": {
                "defaultLanguageTag": "ja",
                "name": "Japan",
                "explicitContentPolicy": "allowed",
                "supportedLanguageTags": [
                    "ja",
                    "en-US"
                ]
            }
        }
    ]
}
```

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