<!--
{
  "availability" : [

  ],
  "documentType" : "symbol",
  "framework" : "AppleMusicAPI",
  "identifier" : "/documentation/AppleMusicAPI/Get-Multiple-Library-Music-Videos",
  "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-music-videos#ids"
  },
  "title" : "Get Multiple Library Music Videos"
}
-->

# Get Multiple Library Music Videos

Fetch one or more library music videos by using their identifiers.

## 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/music-videos?ids=i.V7B9dQLsZ8DZKe
```

**Response:**

```json
{
    "data": [
        {
            "id": "i.V7B9dQLsZ8DZKe",
            "type": "library-music-videos",
            "href": "/v1/me/library/music-videos/i.V7B9dQLsZ8DZKe",
            "attributes": {
                "artwork": {
                    "width": 1200,
                    "height": 1200,
                    "url": "https: //is5-ssl.mzstatic.com/image/thumb/Video124/v4/3f/1e/6f/3f1e6f35-6960-3f0e-0a0c-8701aa2012d4/dj.bcvxpufw.jpg/{w}x{h}bb.jpeg"
                },
                "releaseDate": "2021-02-12",
                "genreNames": [
                    "Pop"
                ],
                "playParams": {
                    "id": "i.V7B9dQLsZ8DZKe",
                    "kind": "musicVideo",
                    "isLibrary": true,
                    "reporting": true,
                    "catalogId": "1553279848"
                },
                "trackNumber": 0,
                "name": "We’re Good",
                "durationInMillis": 191913,
                "artistName": "Dua Lipa"
            }
        }
    ]
}
```

## See Also

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

A resource object that represents a library music video.

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

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