Socket
Socket
Sign inDemoInstall

apiseeds-lyrics

Package Overview
Dependencies
0
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    apiseeds-lyrics

Discover millions of lyrics from all artist all round of world


Version published
Weekly downloads
3
increased by50%
Maintainers
1
Install size
2.98 kB
Created
Weekly downloads
 

Readme

Source

Apiseeds | Lyrics

Is a simple module that provides lyrics from https://apiseeds.com/ directly into your js file in JSON format.

Requeriments

Method

getLyric

Params

  • apikey (String) [Required]
  • artist (String) [Required]
  • track (String) [Required]
  • callback (response,headers) (Function) [Required]

Installation

# Local installation
npm install -s apiseeds-lyrics

# Global installation
npm install -g apiseeds-lyrics

Example #1

'use strict';

var lyrics = require("apiseeds-lyrics");

const apikey = 'YOUR-API-KEY'; // Get it here => https://apiseeds.com/

lyrics.getLyric(apikey,"The Beatles","Yesterday",function(response,headers){
    console.log("Header", headers);
    console.log("Response",response);
});

Example #2

'use strict';

var lyrics = require("apiseeds-lyrics");

const apikey = 'YOUR-API-KEY'; // Get it here => https://apiseeds.com/


var processLiryc = function (response, headers) {
    console.log("Header", headers);
    console.log("Response", response);
}

lyrics.getLyric(apikey, "The Beatles","Hey Jude",processLiryc);

Important

Rate limit and credits are in the header response

Api Documentation

https://apiseeds.com/documentation/lyrics

Keywords

FAQs

Last updated on 22 Jan 2018

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc