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.
- Host: GitHub
- URL: https://github.com/snoopycodex/lyrics-finder-api
- Owner: SnoopyCodeX
- Created: 2024-01-07T05:35:33.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-11-24T16:23:38.000Z (11 months ago)
- Last Synced: 2025-03-29T17:51:07.739Z (6 months ago)
- Topics: cheerio, express, genius-lyrics, lyrics-api, nodejs, typescript
- Language: TypeScript
- Homepage: https://lyrics-finder-api.vercel.app
- Size: 28.3 KB
- Stars: 3
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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).