Catalog/data-lyrics

Data

Song lyrics (lyrics.ovh) API

Fetch the lyrics for a song given the artist and title (lyrics.ovh). For music/content agents. Answers 'lyrics to Yellow by Coldplay', 'get the words to this song', 'what are the lyrics of X'. Coverage is community-sourced, so some songs are missing.

Price$0.01per request
MethodPOST
Route/v1/data/lyrics
StatusLive
MIME typeapplication/json
Rate limit30/minute
Cache86400s public
datalyricsmusicsongsartistlyricsovhmediaentertainment
API URLhttps://x402.hexl.dev/v1/data/lyrics
Integration docs
Example request
{
  "artist": "Coldplay",
  "title": "Yellow"
}
Example response
{
  "artist": "Coldplay",
  "title": "Yellow",
  "found": true,
  "lyrics": "Look at the stars\nLook how they shine for you…",
  "truncated": false
}
Input schema
{
  "type": "object",
  "required": [
    "artist",
    "title"
  ],
  "properties": {
    "artist": {
      "type": "string",
      "examples": [
        "Coldplay"
      ]
    },
    "title": {
      "type": "string",
      "examples": [
        "Yellow"
      ]
    }
  }
}
Output schema
{
  "type": "object",
  "additionalProperties": true
}