Skip to main content
POST
/
end-happy-hour
End Happy Hour
curl --request POST \
  --url https://tokens.shakesco.com/end-happy-hour \
  --header 'Authorization: Bearer <token>'
{ "tx_hash": "0xabc..." }

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.

For the complete documentation index, see llms.txt. 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

tx_hash
string
Reference identifier for the change
await fetch("https://tokens.shakesco.com/end-happy-hour", {
  method: "POST",
  headers: { Authorization: `Bearer ${API_KEY}`, "Content-Type": "application/json" },
  body: JSON.stringify({}),
});
{ "tx_hash": "0xabc..." }