# LRC Lib Lyrics

Search the open lyrics library behind open-source music players — full plain lyrics for every hit, and whether a time-synced copy exists.

- Method: `GET`
- Path: `/v1/music/lyrics/search`

**Parameters**

| Name | Type | | Description |
|---|---|---|---|
| `q` | string | required | Search terms — artist, title, or both. |
| `limit` | integer | optional | Records per page, 1 to 20. |
| `max_age` | integer (seconds) | optional | Ask for data no older than this. Clamped to the product's own floor, so it can narrow the window but never force a refresh on every call. |

**Example request**

```bash
curl https://api.diraz.ae/v1/music/lyrics/search \
  -H "Authorization: Bearer drz_live_…"
```

**Example response**

```json
{
  "data": {
    "query": "paranoid android radiohead",
    "results": [
      {
        "id": 37874470,
        "track_name": "Paranoid Android",
        "artist_name": "Radiohead",
        "album_name": "OK Computer",
        "duration": 383.0,
        "instrumental": false,
        "plain_lyrics": "Please could you stop the noise, I'm trying to get some rest\nFrom all the unborn chicken voices in my head\nWhat's that...?",
        "has_synced": true
      }
    ]
  },
  "meta": {
    "request_id": "req_7Q2fK4mZ",
    "as_of": "2026-08-22T14:50:00.000Z",
    "age_seconds": 42,
    "next_update_at": "2026-08-23T14:50:00.000Z"
  }
}
```