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

# Trigger Cider Play

> Trigger the play button action in Cider

### Request Headers

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

### JSON Response

<Tabs>
  <Tab title="Success">
    <ResponseField name="data" type="boolean" required />

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

    ### Example Response

    ```typescript theme={null}
    {
      data: 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>
