> ## 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 Cider Playback Status

> Get information about Cider's playback status

### JSON Response

<Tabs>
  <Tab title="Success">
    <ResponseField name="data" type="Object" required>
      <Expandable title="properties of data" defaultOpen>
        <ResponseField name="playing" type="boolean">
          Whether or not the Cider app is playing a track
        </ResponseField>

        <ResponseField name="paused" type="boolean">
          Whether or not the Cider app's playback is paused
        </ResponseField>
      </Expandable>
    </ResponseField>

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

    ### Example Response

    ```typescript theme={null}
    {
      data: {
        playing: false,
        paused: true
      },
      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>
