An open API service indexing awesome lists of open source software.

https://github.com/snoopycodex/lyrics-finder-api

This is a simple lyrics API made using NodeJS, Express, Typescript, and Cheerio.
https://github.com/snoopycodex/lyrics-finder-api

cheerio express genius-lyrics lyrics-api nodejs typescript

Last synced: 6 months ago
JSON representation

This is a simple lyrics API made using NodeJS, Express, Typescript, and Cheerio.

Awesome Lists containing this project

README

          

## Simple Lyrics API

This is a simple lyrics API made using NodeJS, Express, Typescript, and Cheerio.

### Base URL

```
https://lyrics-finder-api.vercel.app
```

### Lyrics Endpoint

Method: GET

```
/lyrics?song={song title}
```

### Response Format

```json
{
"lyrics": "{lyrics of the song}",
"title": "{title of the song}",
"artist": "{artist name}",
"albumArt": "{url of the album art of the song}"
}
```

You can find the main project [here](https://github.com/SnoopyCodeX/lyrics-finder).