> ## Documentation Index
> Fetch the complete documentation index at: https://docs.ducky.wiki/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Last.FM Playback

> Get information about Last.FM's playback

### JSON Response

<Tabs>
  <Tab title="Success">
    <ResponseField name="data" type="LastFMNowPlayingResponse" required>
      A [LastFMNowPlayingResponse](../../../types/lastfm_nowplaying_response) object
    </ResponseField>

    <ResponseField name="error" type="null" required />

    ### Example Response

    ```typescript theme={null}
    {
      data: {
      artist: {
          mbid: "",
          "#text": "Tiffany Stringer"
      },
      streamable: "0",
      image: [
          {
              size: "small",
              "#text": "https://lastfm.freetls.fastly.net/i/u/34s/d140a39f4c7260567f0aacf8737b9440.jpg"
          },
          {
              size: "medium",
              "#text": "https://lastfm.freetls.fastly.net/i/u/64s/d140a39f4c7260567f0aacf8737b9440.jpg"
          },
          {
              size: "large",
              "#text": "https://lastfm.freetls.fastly.net/i/u/174s/d140a39f4c7260567f0aacf8737b9440.jpg"
          },
          {
              size: "extralarge",
              "#text": "https://lastfm.freetls.fastly.net/i/u/300x300/d140a39f4c7260567f0aacf8737b9440.jpg"
          }
      ],
      mbid: "",
      album: {
          mbid: "",
          "#text": "The National Anthem (of Independence)"
      },
      name: "The National Anthem (of Independence)",
      url: "https://www.last.fm/music/Tiffany+Stringer/_/The+National+Anthem+(of+Independence)",
      date: {
          uts: "1776835530",
          "#text": "22 Apr 2026, 05:25"
      }
      },
      error: null
    }
    ```
  </Tab>

  <Tab title="Error">
    <ResponseField name="data" type="null" required />

    <ResponseField name="error" type="string" required />

    ### Example Response

    ```typescript theme={null}
    {
      data: null,
      error: "Something went wrong!"
    }
    ```
  </Tab>
</Tabs>
