> ## 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 Current Track

> Get information about the song that is currently playing.

### JSON Response

<Tabs>
  <Tab title="Success">
    A [BasicTrack](/projects/spoofify/Api_Reference/types/BasicTrack) object

    ### Example Response

    ```typescript theme={null}
    {
      id: "5jkFvD4UJrmdoezzT1FRoP",
      album: "Nightflight to Venus",
      artist: "Boney M.",
      href: "https://api.spotify.com/v1/tracks/5jkFvD4UJrmdoezzT1FRoP",
      imageUrl: "https://i.scdn.co/image/ab67616d0000b2739e77d65619f80436b5cc9d12",
      title: "Rasputin",
      uri: "spotify:track:5jkFvD4UJrmdoezzT1FRoP"
    }
    ```
  </Tab>

  <Tab title="Error">
    `Null`

    ### Example Response

    ```typescript theme={null}
    null
    ```
  </Tab>
</Tabs>
