Spotify Track Search 🎵 avatar

Spotify Track Search 🎵

Try for free

2 hours trial then $19.99/month - No credit card required now

Go to Store
Spotify Track Search 🎵

Spotify Track Search 🎵

easyapi/spotify-track-search
Try for free

2 hours trial then $19.99/month - No credit card required now

Extract and search Spotify tracks data using keywords. Get comprehensive track information including artists, album details, track URLs, and preview links - perfect for music data analysis and content discovery.

Developer
Maintained by Community

Actor Metrics

  • 2 monthly users

  • No reviews yet

  • No bookmarks yet

  • >99% runs succeeded

  • Created in Dec 2024

  • Modified 3 months ago

Extract detailed track information from Spotify using search keywords. This Actor helps you gather comprehensive music data including track details, artist information, album metadata, and more.

Features 🌟

  • Search Spotify tracks using keywords
  • Get detailed track information including:
    • Track title and ID
    • Artist details
    • Album information
    • Release dates
    • Duration
    • Preview URLs
    • Spotify URIs and external links

Use Cases 💡

  • Music data analysis and research
  • Content discovery and curation
  • Playlist generation
  • Music industry insights
  • Artist research
  • Marketing analysis

Output 📊

The Actor outputs JSON format data containing:

  • Track title and artists
  • Album details and release date
  • Track duration and number
  • Spotify URLs for both track and album
  • Preview URL (when available)
  • Unique identifiers (Track ID, Album ID, URI)

Input Parameters ⚙️

ParameterTypeDescription
searchQueryStringThe search term to find tracks on Spotify

Cost & Usage 💰

  • Memory: 256 MB
  • Compute Units: Minimal usage
  • Typical runtime: ~1-2 seconds per search query

Input Example

A full explanation of an input example in JSON.

1{
2    "searchQuery": "wind"
3}

Output sample

The results will be wrapped into a dataset which you can always find in the Storage tab. Here's an excerpt from the data you'd get if you apply the input parameters above:

And here is the same data but in JSON. You can choose in which format to download your data: JSON, JSONL, Excel spreadsheet, HTML table, CSV, or XML.

1[
2    {
3        "title": "Winds of Change (feat. myndstream)",
4        "artists": [
5            "Timbaland",
6            "Malte Marten",
7            "myndstream"
8        ],
9        "albumArtists": [
10            "Timbaland",
11            "Malte Marten"
12        ],
13        "trackId": "3bIDLdalTypKnBGYK7wsrG",
14        "albumReleaseDate": "2024-12-05",
15        "albumId": "1oL6jSjfCVu2ugtzFK7dYp",
16        "totalAlbumTracks": 10,
17        "durationMs": 183773,
18        "uri": "spotify:track:3bIDLdalTypKnBGYK7wsrG",
19        "albumUrl": "https://open.spotify.com/album/1oL6jSjfCVu2ugtzFK7dYp",
20        "trackUrl": "https://open.spotify.com/track/3bIDLdalTypKnBGYK7wsrG",
21        "previewUrl": "https://p.scdn.co/mp3-preview/8c846cfdee134ce9ab79d1333448f3653df592cd?cid=acc6302297e040aeb6e4ac1fbdfd62c3"
22    },
23    {
24        "title": "Wind It Up",
25        "artists": [
26            "Gwen Stefani"
27        ],
28        "albumArtists": [
29            "Gwen Stefani"
30        ],
31        "trackId": "1GeECVH4Msg1zLm8DExkbH",
32        "albumReleaseDate": "2006-01-01",
33        "albumId": "7xnZ539lh8x6de9jzlpCJp",
34        "totalAlbumTracks": 12,
35        "durationMs": 189586,
36        "uri": "spotify:track:1GeECVH4Msg1zLm8DExkbH",
37        "albumUrl": "https://open.spotify.com/album/7xnZ539lh8x6de9jzlpCJp",
38        "trackUrl": "https://open.spotify.com/track/1GeECVH4Msg1zLm8DExkbH",
39        "previewUrl": null
40    },
41    ...
42]