Skip to main content
GET
/
happy-hour
Get Happy Hour
curl --request GET \
  --url https://tokens.shakesco.com/happy-hour \
  --header 'Authorization: Bearer <token>'
{
  "end_time": "1715010000",
  "multiplier": 2,
  "is_active": true
}

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. Returns the current happy hour state. is_active tells you whether claims right now would be multiplied.

Response

end_time
string
Unix timestamp (seconds) when the happy hour ends. "0" if no happy hour was ever set or it was ended early.
multiplier
number
Multiplier value (e.g. 2 for 2x). Returns 1 when inactive.
is_active
boolean
true if a happy hour is currently in progress
const res = await fetch("https://tokens.shakesco.com/happy-hour", {
  headers: { Authorization: `Bearer ${API_KEY}` },
});
const { end_time, multiplier, is_active } = await res.json();
{
  "end_time": "1715010000",
  "multiplier": 2,
  "is_active": true
}