Youtube Music Autocomplete avatar
Youtube Music Autocomplete

Pricing

$3.00 / 1,000 results

Go to Store
Youtube Music Autocomplete

Youtube Music Autocomplete

Developed by

Maged

Maged

Maintained by Community

youtube music autocomplete

5.0 (1)

Pricing

$3.00 / 1,000 results

0

Total users

1

Monthly users

1

Runs succeeded

>99%

Last modified

3 days ago

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
}