> ## 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.

# Add Track to Queue

> Add a song to the Spotify queue

### Request Headers

<ParamField header="api-key" type="string" required>
  Must match the API key set in the Spoofify environment variables
</ParamField>

### Path Parameters

<ParamField path="track_uri" type="string" required>
  The URI of the track on Spotify you want to play.

  The URI can be obtained via [Search for Track](../get/search)
</ParamField>

### JSON Response

<Tabs>
  <Tab title="Success">
    `true`

    ### Example Response

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

  <Tab title="Error">
    `false`

    ### Example Response

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