<!--
{
  "availability" : [

  ],
  "documentType" : "symbol",
  "framework" : "AppleMusicAPI",
  "identifier" : "/documentation/AppleMusicAPI/Get-All-Library-Artists",
  "metadataVersion" : "0.1.0",
  "role" : "Web Service Endpoint",
  "symbol" : {
    "kind" : "Web Service Endpoint",
    "modules" : [
      "Apple Music API"
    ],
    "preciseIdentifier" : "rest:music_api:get:v1-me-library-artists#all"
  },
  "title" : "Get All Library Artists"
}
-->

# Get All Library Artists

Fetch all the library artists in alphabetical order.

## Discussion

If successful, the HTTP status code is 200 (OK) and the `data` array contains the requested resource 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/library/artists
```

**Response:**

```json
{    
    "next": "/v1/me/library/artists?offset=2",
    "data": [
        {
            "id": "r.y8mMT7t",
            "type": "library-artists",
            "href": "/v1/me/library/artists/r.y8mMT7t",
            "attributes": {
                "name": "Orville Peck"
            }
        },
        {
            "id": "r.SvEnrEf",
            "type": "library-artists",
            "href": "/v1/me/library/artists/r.SvEnrEf",
            "attributes": {
                "name": "Florence + the Machine"
            }
        }
    ],
    "meta": {
        "total": 10
    }
}
```

## See Also

[`LibraryArtists`](/documentation/AppleMusicAPI/LibraryArtists)

A resource object that represents an artist present in a user’s library.

[`LibraryArtistsResponse`](/documentation/AppleMusicAPI/LibraryArtistsResponse)

The response to a library artists 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)