Skip to main content
GET
/
daily-cap-settings
Daily Cap Settings
curl --request GET \
  --url https://tokens.shakesco.com/daily-cap-settings \
  --header 'Authorization: Bearer <token>'
{
  "cap": "50.0",
  "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 cap value and whether it’s active. is_active is false if the cap was never set or has been removed.

Response

cap
string
Configured cap amount as a plain decimal string
is_active
boolean
true if the cap is currently enforced
const res = await fetch("https://tokens.shakesco.com/daily-cap-settings", {
  headers: { Authorization: `Bearer ${API_KEY}` },
});
const { cap, is_active } = await res.json();
{
  "cap": "50.0",
  "is_active": true
}