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

# Play Cider Song by ID

> Play a song on Cider via its Apple Music ID

### Request Headers

<ParamField header="quack" type="string" required>
  This header must be set to "quack", otherwise requests will fail
</ParamField>

### Path Parameters

<ParamField path="songId" type="string" required>
  The new volume, from 0 to 1
</ParamField>

### JSON Response

<Tabs>
  <Tab title="Success">
    <ResponseField name="data" type="Object" required>
      <Expandable title="properties of data" defaultOpen>
        <ResponseField name="added" type="boolean" />

        <ResponseField name="song" type="Object">
          <Expandable title="properties of song" defaultOpen>
            <ResponseField name="data" type="Object">
              <Expandable title="properties of song.data" defaultOpen>
                <ResponseField name="id" type="string" />

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

                <ResponseField name="href" type="string" />

                <ResponseField name="attributes" type="Partial<AppleMusicNowPlayingResponse>" />

                <ResponseField name="relationships" type="Object" />
              </Expandable>
            </ResponseField>
          </Expandable>
        </ResponseField>
      </Expandable>
    </ResponseField>

    <ResponseField name="error" type="null" required />
  </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>
