REST Resource: musicTracks
Stay organized with collections
Save and categorize content based on your preferences.
Resource: MusicTrack
A representation of a music track.
All rights reserved. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2025-08-20 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-08-20 UTC."],[[["\u003cp\u003eThe MusicTrack resource represents a music track with details such as name, title, artists, and external video ID.\u003c/p\u003e\n"],["\u003cp\u003eMusic tracks contain a list of artists, which are represented by the Artist object.\u003c/p\u003e\n"],["\u003cp\u003eA track can have an external video ID associated with it.\u003c/p\u003e\n"],["\u003cp\u003eThe \u003ccode\u003ehasOpenChangeRequest\u003c/code\u003e boolean indicates if there is at least one open ChangeRequest associated with a track.\u003c/p\u003e\n"],["\u003cp\u003eThe \u003ccode\u003elist\u003c/code\u003e method allows you to retrieve a collection of music tracks.\u003c/p\u003e\n"]]],["The core content defines the `MusicTrack` resource, representing a music track with attributes like `name`, `title`, `artists`, `externalVideoId`, and `hasOpenChangeRequest`. Its JSON representation is detailed, outlining the structure and data types. The `name` field uses a specific format (`releases/{release}/tracks/{track}`). A single method, `list`, is provided for retrieving a collection of music tracks.\n"],null,["# REST Resource: musicTracks\n\n- [Resource: MusicTrack](#MusicTrack)\n - [JSON representation](#MusicTrack.SCHEMA_REPRESENTATION)\n- [Methods](#METHODS_SUMMARY)\n\nResource: MusicTrack\n--------------------\n\nA representation of a music track.\n\n| JSON representation |\n|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| ``` { \"name\": string, \"title\": string, \"artists\": [ { object (/youtube/partner/reference/rest/v1/Artist) } ], \"externalVideoId\": string, \"hasOpenChangeRequest\": boolean } ``` |\n\n| Fields ||\n|------------------------|-------------------------------------------------------------------------------------------------|\n| `name` | `string` The resource name of the music track. Format: releases/{release}/tracks/{track} |\n| `title` | `string` The title of this track. |\n| `artists[]` | `object (`[Artist](/youtube/partner/reference/rest/v1/Artist)`)` List of artists for the track. |\n| `externalVideoId` | `string` The external videoId for the track. |\n| `hasOpenChangeRequest` | `boolean` The track has at least one ChangeRequest in open status. |\n\n| Methods ------- ||\n|-----------------------------------------------------------------|-----------------------------------|\n| ### [list](/youtube/partner/reference/rest/v1/musicTracks/list) | Retrieves a list of music tracks. |"]]