Skip to main content

Genius

Base URL: https://drain.lat/api/v1/genius
Get complete song data including full lyrics text.
GET /api/v1/genius/song
q
string
required
Song name or artist name to search for. Can also use query parameter.
curl "https://drain.lat/api/v1/genius/song?q=never+gonna+give+you+up" \
  -H "x-api-key: YOUR_API_KEY"
id
number
Song ID.
title
string
Song title.
artist
string
Artist name.
artistId
number
Artist ID.
artistImage
string
Artist image URL.
albumArt
string
Album art URL.
lyrics
string
Full lyrics text.
url
string
Link to the song on Genius.
releaseDate
string
Release date.
pageviews
number
Total page views.
Response
{
  "id": 67890,
  "title": "Never Gonna Give You Up",
  "artist": "Rick Astley",
  "artistId": 456,
  "artistImage": "https://images.genius.com/...",
  "albumArt": "https://images.genius.com/...",
  "lyrics": "We're no strangers to love\nYou know the rules and so do I...",
  "url": "https://genius.com/Rick-astley-never-gonna-give-you-up-lyrics",
  "releaseDate": "July 27, 1987",
  "pageviews": 10000000,
  "scrapedAt": "2026-05-31T00:00:00Z"
}
This endpoint scrapes lyrics from Genius pages and may take 5-10 seconds to respond.