> ## Documentation Index
> Fetch the complete documentation index at: https://docs.shakesco.com/llms.txt
> Use this file to discover all available pages before exploring further.

# End Happy Hour

> Stop an active happy hour before its scheduled end

<span style={{display:"none"}}>For the complete documentation index, see [llms.txt](/llms.txt).</span>

Ends any happy hour currently in progress. No-op if none is active. Send an empty JSON body.

### Request Body

*No fields. Send an empty JSON body (`{}`).*

### Response

<ResponseField name="tx_hash" type="string">
  Reference identifier for the change
</ResponseField>

```javascript theme={null}
await fetch("https://tokens.shakesco.com/end-happy-hour", {
  method: "POST",
  headers: { Authorization: `Bearer ${API_KEY}`, "Content-Type": "application/json" },
  body: JSON.stringify({}),
});
```

<ResponseExample>
  ```json 200 OK theme={null}
  { "tx_hash": "0xabc..." }
  ```
</ResponseExample>
