> ## 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.

# Cashback Reward

> Read the configured cashback reward in tokens (no currency conversion)

<span style={{display:"none"}}>For the complete documentation index, see [llms.txt](/llms.txt).</span>

Returns just the token reward configured for cashback. Use this when you don't need the threshold or currency context.

### Response

<ResponseField name="reward_tokens" type="string">
  Tokens awarded each time the threshold is crossed
</ResponseField>

```javascript theme={null}
const res = await fetch("https://tokens.shakesco.com/cashback-reward", {
  headers: { Authorization: `Bearer ${API_KEY}` },
});
const { reward_tokens } = await res.json();
```

<ResponseExample>
  ```json 200 OK theme={null}
  { "reward_tokens": "5.0" }
  ```
</ResponseExample>
