Skip to main content
GET
/
cashback-reward
Cashback Reward
curl --request GET \
  --url https://tokens.shakesco.com/cashback-reward \
  --header 'Authorization: Bearer <token>'
{ "reward_tokens": "5.0" }

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 just the token reward configured for cashback. Use this when you don’t need the threshold or currency context.

Response

reward_tokens
string
Tokens awarded each time the threshold is crossed
const res = await fetch("https://tokens.shakesco.com/cashback-reward", {
  headers: { Authorization: `Bearer ${API_KEY}` },
});
const { reward_tokens } = await res.json();
{ "reward_tokens": "5.0" }