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

# Remove Daily Cap

> Disable the daily earning cap entirely

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

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`](/api-reference/tokens/promotions/set-daily-cap) again.

### Request Body

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

### Response

<ResponseField name="tx_hash" type="string">
  Reference identifier for the change
</ResponseField>

```javascript theme={null}
await fetch("https://tokens.shakesco.com/remove-daily-cap", {
  method: "POST",
  headers: { Authorization: `Bearer ${API_KEY}`, "Content-Type": "application/json" },
  body: JSON.stringify({}),
});
```

<ResponseExample>
  ```json 200 OK theme={null}
  { "tx_hash": "0xabc..." }
  ```
</ResponseExample>
