Skip to main content
POST
/
remove-daily-cap
Remove Daily Cap
curl --request POST \
  --url https://tokens.shakesco.com/remove-daily-cap \
  --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. Turns off the daily earning cap so customers can earn unlimited tokens per day. Send an empty JSON body. You can re-enable later by calling /set-daily-cap again.

Request Body

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

Response

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