Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@ipmanlk/spotify-grab

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ipmanlk/spotify-grab

spotify-grab ====================== Extract useful metadata from various Spotify URIs.

  • 1.1.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
8
increased by700%
Maintainers
1
Weekly downloads
 
Created
Source

spotify-grab

Extract useful metadata from various Spotify URIs.

Installation

npm i @ipmanlk/spotify-grab

Usage

getInfo(URI) ⇒ Promise.<(Spotify.Info|undefined)>

Kind: global function
Returns: Promise.<(Spotify.Info|undefined)> - - Data extracted from the URI.
Throws:

  • SPOTIFY_URI_PARSE_ERROR - Unable to parse the given URI.
  • SPOTIFY_UNSUPPORTED_URI_TYPE - Given URI is not supported.
  • SPOTIFY_REQUEST_FAILED - Failed to send a request to Spotify.
ParamTypeDescription
URIstringSpotify URI in any format. Only URIs for tracks, artists, albums and playlists are supported.

Example

const { getInfo } = require("@ipmanlk/spotify-grab")

const URI = "https://open.spotify.com/track/6habFhsOp2NvshLv26DqMb?si=FkyYtDchRW-L8L2BlCweRw"

getInfo(URI).then(data => {
		console.log(data);
}).catch(error => {
		console.log(error);
});

 //* Output of the above code will take following shape,
{
  "type": "track", //* Type of the input URI
  "track": {       //* Object with the name of above type (dynamic)
    "id": "6habFhsOp2NvshLv26DqMb",
    "name": "Despacito",
    "preview_url": "https://p.scdn.co/mp3-preview/ce2ad348fa47",
    "album": {
      "name": "VIDA"
    },
    "explicit": false,
    "artists": [
      {
        "id": "4V8Sr092TqfHkfAA5fXXqG",
        "name": "Luis Fonsi",
        "uri": "spotify:artist:4V8Sr092TqfHkfAA5fXXqG"
      }
    ]
  }
}

FAQs

Package last updated on 23 Oct 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc