@musixmatch/n8n-nodes-musixmatch
v0.2.1
Published
n8n node for Musixmatch API
Downloads
279
Maintainers
Keywords
Readme
n8n-nodes-musixmatch
This is an n8n community node that lets you use Musixmatch in your n8n workflows.
Musixmatch is the world's largest lyrics catalog, providing access to millions of songs' lyrics, translations, subtitles, and music metadata. This node enables you to integrate Musixmatch's powerful API into your automation workflows.
n8n is a fair-code licensed workflow automation platform.
Table of Contents
Installation
Follow the installation guide in the n8n community nodes documentation.
Community Node Installation
- Go to Settings > Community Nodes in your n8n instance
- Select Install
- Enter
n8n-nodes-musixmatchin Enter npm package name - Agree to the risks of using community nodes
- Select Install
After installing the node, you can use it like any other node in your workflows.
Operations
The Musixmatch node currently supports the following operations:
Catalog Resource
- Chart Tracks Get: Retrieve the top charting tracks from a specific country
- Track Get: Get track information by Musixmatch Track ID
- Track Lyrics Get: Retrieve lyrics for a specific track
- Track Lyrics Translation Get: Get translated lyrics for a track in a specified language
- Track Subtitle Get: Retrieve subtitles (time-synced lyrics) for a track
- Matcher Track Get: Search and match a track by artist and track name
Available Operations Details
Chart Tracks Get
Retrieve trending and top charting tracks from Musixmatch charts. You can filter by country and chart type (e.g., top, hot, mxmweekly).
Track Get
Fetch detailed information about a specific track using its Musixmatch Track ID, including metadata like artist name, album, release date, and more.
Track Lyrics Get
Access the lyrics of any track in the Musixmatch catalog by providing the Track ID.
Track Lyrics Translation Get
Get translated versions of lyrics in multiple languages. Perfect for multilingual applications and global audiences.
Track Subtitle Get
Retrieve time-synced subtitles (lyrics with timestamps) for karaoke applications, music players, or synchronized displays.
Matcher Track Get
Search for a track by providing the artist name and track title. This operation returns the best matching track from the Musixmatch database.
Credentials
To use this node, you need a Musixmatch API key.
Getting Your API Key
- Visit Musixmatch API Pricing to view available plans
- Subscribe to a plan that fits your needs
- Once subscribed, you'll receive your API key
- Copy your API key to use with this n8n node
Setting Up Credentials in n8n
- In your n8n workflow, add the Musixmatch node
- Click on Credential for Musixmatch API
- Select Create New Credential
- Enter your API Key
- Click Save
The node will automatically authenticate all API requests using your credentials.
Compatibility
- Minimum n8n version: 1.0.0
- Tested with n8n versions: 1.119.2 and above
This node is built using the latest n8n community node standards and should be compatible with all recent versions of n8n.
Usage
Example Workflow: Get Trending Tracks with Lyrics
Here's a simple example that retrieves the top 10 trending tracks from the US charts and fetches their lyrics:
Add Musixmatch node configured to use Chart Tracks Get operation
- Set Country to
US - Set Chart Name to
top - Set Page Size to
10
- Set Country to
Add a second Musixmatch node configured to use Track Lyrics Get operation
- Use
{{ $json.track_id }}from the previous node to fetch lyrics for each track
- Use
Process the results with other n8n nodes as needed (e.g., save to database, send to webhook, etc.)
Example Workflow: Search and Translate Lyrics
Add Musixmatch node configured to use Matcher Track Get operation
- Set Artist Name to the artist you want to search
- Set Track Name to the song title
Add a second Musixmatch node configured to use Track Lyrics Translation Get operation
- Use
{{ $json.track_id }}from the previous node - Set Language to your desired language code (e.g.,
esfor Spanish,frfor French)
- Use
Tips
- The node is compatible with AI Agent workflows (marked as
usableAsTool) - All operations respect n8n's Continue On Fail setting for robust error handling
- Use the Matcher Track Get operation when you don't have a Track ID but know the artist and song name
- Rate limits depend on your Musixmatch API plan - consider implementing appropriate delays for large batch operations
Resources
Support
For issues, questions, or contributions, please visit the GitHub repository.
This is a community node and is not officially maintained by n8n. For official support, please contact Musixmatch directly.
