# YouTube Music Downloader API Export

**Use case:** 

Create downloadable audio rows from direct YouTube URLs and export saved file links and metadata through the Apify API.

## Input

```json
{
  "urls": [
    {
      "url": "https://youtu.be/dQw4w9WgXcQ"
    }
  ],
  "format": "m4a",
  "quality": "128"
}
```

## Output

```json
{
  "title": {
    "label": "Title",
    "format": "string"
  },
  "channelName": {
    "label": "Channel",
    "format": "string"
  },
  "audioUrl": {
    "label": "Audio URL",
    "format": "string"
  },
  "audioFormat": {
    "label": "Audio format",
    "format": "string"
  },
  "durationSeconds": {
    "label": "Duration seconds",
    "format": "integer"
  },
  "thumbnailUrl": {
    "label": "Thumbnail URL",
    "format": "string"
  },
  "submittedUrl": {
    "label": "Submitted URL",
    "format": "string"
  },
  "videoId": {
    "label": "Video ID",
    "format": "string"
  },
  "channelUrl": {
    "label": "Channel URL",
    "format": "string"
  },
  "audioBitrateKbps": {
    "label": "Audio bitrate",
    "format": "number"
  },
  "fileSizeBytes": {
    "label": "File size bytes",
    "format": "integer"
  },
  "uploadDate": {
    "label": "Upload date",
    "format": "string"
  },
  "likeCount": {
    "label": "Likes",
    "format": "integer"
  },
  "commentCount": {
    "label": "Comments",
    "format": "integer"
  }
}
```

## About this Actor

This example demonstrates how to use [YouTube Music Downloader](https://apify.com/maximedupre/youtube-music-downloader) with a specific input configuration. Visit the [Actor detail page](https://apify.com/maximedupre/youtube-music-downloader) to learn more, explore other use cases, and run it yourself.