# AZLyrics

One song's lyrics from the long-running AZLyrics archive — the full text, by artist and title.

- Method: `GET`
- Path: `/v1/music/azlyrics`

**Parameters**

| Name | Type | | Description |
|---|---|---|---|
| `artist` | string | required | Artist name, e.g. `Radiohead`. |
| `track` | string | required | Song title, e.g. `Paranoid Android`. |
| `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/azlyrics \
  -H "Authorization: Bearer drz_live_…"
```

**Example response**

```json
{
  "data": {
    "artist": "Radiohead",
    "track": "Paranoid Android",
    "album": null,
    "lyrics": "Please could you stop the noise?\nI'm trying to get some rest\nFrom all the unborn chicken voices in my head\nWhat's that...?\nWhat's that...?",
    "source_url": "https://www.azlyrics.com/lyrics/radiohead/paranoidandroid.html"
  },
  "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"
  }
}
```