Youtube Music Autocomplete avatar
Youtube Music Autocomplete

Pricing

$10.00/month + usage

Go to Apify Store
Youtube Music Autocomplete

Youtube Music Autocomplete

youtube music autocomplete

Pricing

$10.00/month + usage

Rating

5.0

(1)

Developer

Maged

Maged

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

2

Monthly active users

a month ago

Last modified

Share

YouTube Music Autocomplete Actor

Overview

The YouTube Music Autocomplete Actor is an Apify actor that fetches autocomplete suggestions from YouTube Music for a given search query. It is ideal for building search UIs, keyword research, or enhancing user experience with real-time suggestions.

Features

  • Autocomplete Suggestions: Fetches suggestions for any search query.
  • Output Formats: Data stored in Apify’s dataset, exportable as JSON or CSV, with a table view in Apify UI.
  • Cross-Language Access: Run via Apify’s REST API or SDKs (Python, Node.js, etc.) for integration with any language.

Input Configuration

The actor accepts a JSON input with the following field:

FieldTypeDescriptionRequiredDefault
queryStringQuery to get autocomplete forYes-

Example Input:

{
"query": "Imagine Dragons"
}

Output Format

The actor outputs data to Apify’s dataset, viewable as a table in the Apify UI or exportable as JSON/CSV. Each record contains:

FieldTypeDescription
textStringSuggestion text
runsArrayText runs (with bold)
fromHistoryBooleanFrom user history
feedbackTokenStringFeedback token

Example Output:

{
"text": "imagine - john lennon",
"runs": [
{"text": "imagine - john lennon", "bold": true}
],
"fromHistory": false,
"feedbackToken": null
}