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

# Tier Thresholds

> Read the currently configured Bronze, Silver, and Gold thresholds

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

Returns the balance thresholds you've set for each tier, plus whether tiers are currently active. `is_active` is `false` if you've never called [`/set-tiers`](/api-reference/tokens/governance/set-tiers).

### Response

<ResponseField name="bronze" type="string">
  Balance required for Bronze tier
</ResponseField>

<ResponseField name="silver" type="string">
  Balance required for Silver tier
</ResponseField>

<ResponseField name="gold" type="string">
  Balance required for Gold tier
</ResponseField>

<ResponseField name="is_active" type="boolean">
  `true` once thresholds have been configured
</ResponseField>

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

<ResponseExample>
  ```json 200 OK theme={null}
  {
    "bronze": "100.0",
    "silver": "500.0",
    "gold": "2000.0",
    "is_active": true
  }
  ```
</ResponseExample>
